mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 00:45:36 +00:00
8 lines
246 B
CMake
8 lines
246 B
CMake
set(PHYSICS_STEM 2pt-fit)
|
|
|
|
foreach(_stem ${PHYSICS_STEM})
|
|
add_executable(latan-${_stem} ${_stem}.cpp)
|
|
target_link_libraries(latan-${_stem} LatAnalyze)
|
|
install(TARGETS latan-${_stem} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
endforeach()
|