mirror of
https://github.com/Jaxan/hybrid-ads.git
synced 2025-04-27 15:07:45 +02:00
9 lines
209 B
CMake
9 lines
209 B
CMake
|
|
file(GLOB_RECURSE sources "*.cpp")
|
|
file(GLOB_RECURSE headers "*.hpp")
|
|
|
|
set(libs)
|
|
|
|
add_library(common ${headers} ${sources})
|
|
target_link_libraries(common ${libs})
|
|
target_include_directories(common PUBLIC ".")
|