mirror of
https://github.com/gwm17/catima.git
synced 2024-11-23 02:38:51 -05:00
9 lines
245 B
CMake
9 lines
245 B
CMake
set(CATIMA_APPS catima_calculator)
|
|
|
|
foreach(entry ${CATIMA_APPS})
|
|
add_executable(${entry} ${entry}.cpp)
|
|
target_link_libraries(${entry} catima)
|
|
endforeach(entry in ${CATIMA_APPS})
|
|
|
|
install (TARGETS ${CATIMA_APPS} RUNTIME DESTINATION bin)
|