11 lines
No EOL
240 B
CMake
11 lines
No EOL
240 B
CMake
add_library(app STATIC
|
|
src/app.cpp
|
|
src/irq_bridge.cpp
|
|
src/thread_safe_console_output.cpp
|
|
)
|
|
|
|
target_include_directories(app PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}/inc
|
|
)
|
|
|
|
target_link_libraries(app PUBLIC stm32cubemx platform f4ll) |