27 lines
545 B
CMake
27 lines
545 B
CMake
|
|
|
|
add_library(simulation-manager INTERFACE)
|
|
|
|
target_sources(
|
|
simulation-manager
|
|
INTERFACE
|
|
simulation_manager.hpp
|
|
)
|
|
|
|
target_include_directories(
|
|
simulation-manager
|
|
INTERFACE
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../include
|
|
)
|
|
|
|
target_link_libraries(
|
|
simulation-manager
|
|
INTERFACE
|
|
periodic-interference
|
|
step
|
|
temperature-drift
|
|
white-noise
|
|
)
|
|
|
|
#add_executable(simulation-manager main.cpp simulation_manager.hpp algorithm_wrap.hpp) |