mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
15 lines
300 B
CMake
15 lines
300 B
CMake
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(sources
|
|
GUIThread.cpp
|
|
MOVThread.cpp
|
|
PIDThread.cpp
|
|
POWThread.cpp
|
|
shared.cpp
|
|
)
|
|
|
|
|
|
add_library(threads ${sources})
|
|
target_include_directories(threads PUBLIC .)
|
|
target_link_libraries(threads PUBLIC BSP FreeRTOS drivers languages)
|