forked from stm32duino/Arduino_Core_STM32
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(cmake): update after h7 variants update
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
- Loading branch information
Showing
3 changed files
with
83 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
variants/STM32H7xx/H742I(G-I)K_H743I(G-I)K_H750IBK_H753IIK/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...> | ||
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects | ||
cmake_minimum_required(VERSION 3.21) | ||
|
||
add_library(variant INTERFACE) | ||
add_library(variant_usage INTERFACE) | ||
|
||
target_include_directories(variant_usage INTERFACE | ||
. | ||
) | ||
|
||
|
||
target_link_libraries(variant_usage INTERFACE | ||
base_config | ||
) | ||
|
||
target_link_libraries(variant INTERFACE variant_usage) | ||
|
||
|
||
|
||
add_library(variant_bin STATIC EXCLUDE_FROM_ALL | ||
generic_clock.c | ||
PeripheralPins.c | ||
PeripheralPins_DAISY_PATCH_SM.c | ||
PeripheralPins_DAISY_PETAL_SM.c | ||
PeripheralPins_DAISY_SEED.c | ||
variant_DAISY_PATCH_SM.cpp | ||
variant_DAISY_PETAL_SM.cpp | ||
variant_DAISY_SEED.cpp | ||
variant_generic.cpp | ||
) | ||
target_link_libraries(variant_bin PUBLIC variant_usage) | ||
|
||
target_link_libraries(variant INTERFACE | ||
variant_bin | ||
) | ||
|
31 changes: 31 additions & 0 deletions
31
variants/STM32H7xx/H742I(G-I)T_H743I(G-I)T_H750IBT_H753IIT/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# v3.21 implemented semantic changes regarding $<TARGET_OBJECTS:...> | ||
# See https://cmake.org/cmake/help/v3.21/command/target_link_libraries.html#linking-object-libraries-via-target-objects | ||
cmake_minimum_required(VERSION 3.21) | ||
|
||
add_library(variant INTERFACE) | ||
add_library(variant_usage INTERFACE) | ||
|
||
target_include_directories(variant_usage INTERFACE | ||
. | ||
) | ||
|
||
|
||
target_link_libraries(variant_usage INTERFACE | ||
base_config | ||
) | ||
|
||
target_link_libraries(variant INTERFACE variant_usage) | ||
|
||
|
||
|
||
add_library(variant_bin STATIC EXCLUDE_FROM_ALL | ||
generic_clock.c | ||
PeripheralPins.c | ||
variant_generic.cpp | ||
) | ||
target_link_libraries(variant_bin PUBLIC variant_usage) | ||
|
||
target_link_libraries(variant INTERFACE | ||
variant_bin | ||
) | ||
|