mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2025-04-05 17:35:55 +01:00
8 lines
261 B
CMake
8 lines
261 B
CMake
set(PHYSICS_STEM 2pt-fit)
|
|
|
|
foreach(_stem ${PHYSICS_STEM})
|
|
add_executable(latan-${_stem} ${_stem}.cpp)
|
|
target_link_libraries(latan-${_stem} LatAnalyze compiler_flags)
|
|
install(TARGETS latan-${_stem} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
endforeach()
|