From 5a282ee029114b7a73e980feefd15a0a0a8047ab Mon Sep 17 00:00:00 2001 From: jake Date: Tue, 4 Feb 2025 09:32:16 -0800 Subject: [PATCH] Added directories to include along with comments. --- micro-controllers/CMakeLists.txt | 5 +++++ micro-controllers/STM32G0B1CBTx/CMakeLists.txt | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 micro-controllers/CMakeLists.txt create mode 100644 micro-controllers/STM32G0B1CBTx/CMakeLists.txt diff --git a/micro-controllers/CMakeLists.txt b/micro-controllers/CMakeLists.txt new file mode 100644 index 0000000..71e0a3f --- /dev/null +++ b/micro-controllers/CMakeLists.txt @@ -0,0 +1,5 @@ +# The Dircetory for micro-controllers +# Just un-comment one of the one's below to use it. + +add_subdirectory(STM32G0B1CBTx) +#add_subdirectory(STM32f103CBTx) diff --git a/micro-controllers/STM32G0B1CBTx/CMakeLists.txt b/micro-controllers/STM32G0B1CBTx/CMakeLists.txt new file mode 100644 index 0000000..46be9fd --- /dev/null +++ b/micro-controllers/STM32G0B1CBTx/CMakeLists.txt @@ -0,0 +1,9 @@ +# uC: STM32G0B1 + +# Add the headers +include_directories( + ./Core/Inc + ./Drivers/STM32G0xx_HAL_Driver/Inc + ./Drivers/CMSIS/Include +) +