From f97455ec016523564467f7584b1e19b1da9dd81e Mon Sep 17 00:00:00 2001 From: jake Date: Mon, 20 Jan 2025 19:48:47 -0800 Subject: [PATCH] Added ASM to languages Added the ASM keyword to the cmake languages section. Also changed the version number to X.X.X for semantic versioning. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ac159cc..5bd31db 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.20) # Use the fancy version substitution project(main - VERSION 1.0 + VERSION 0.1.0 DESCRIPTION "STM32 template for cmake + cpputest" - LANGUAGES C CXX + LANGUAGES C CXX ASM ) enable_testing()