We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dfe267 commit d3bd8aaCopy full SHA for d3bd8aa
test-app/CMakeLists.txt
@@ -124,10 +124,12 @@ if(BUILD_TEST_APPS)
124
125
# stm32h5-specific sources
126
if("${WOLFBOOT_TARGET}" STREQUAL "stm32h5")
127
+ set_source_files_properties(${CMAKE_BINARY_DIR}/keystore.c PROPERTIES GENERATED TRUE)
128
target_sources(image PRIVATE
129
../hal/uart/uart_drv_stm32h5.c
- ../src/keystore.c
130
+ ${CMAKE_BINARY_DIR}/keystore.c
131
)
132
+ add_dependencies(image keystore)
133
target_compile_definitions(image PRIVATE
134
APP_HAS_SYSTICK
135
RAMFUNCTION=__attribute__\(\(used,section\(".ramcode"\),long_call\)\)
0 commit comments