| 1 |
greg |
1.1 |
add_executable(cnt cnt.c) |
| 2 |
|
|
|
| 3 |
|
|
add_executable(ev ev.c) |
| 4 |
|
|
target_link_libraries(ev rtrad) |
| 5 |
|
|
|
| 6 |
|
|
add_executable(histo histo.c) |
| 7 |
|
|
target_link_libraries(histo ${LIB_M}) |
| 8 |
|
|
|
| 9 |
|
|
add_executable(icalc calc.c) |
| 10 |
|
|
target_link_libraries(icalc rtrad) |
| 11 |
|
|
|
| 12 |
|
|
add_executable(neaten neat.c) |
| 13 |
|
|
|
| 14 |
|
|
add_executable(rcalc rcalc.c) |
| 15 |
|
|
target_link_libraries(rcalc rtrad) |
| 16 |
|
|
|
| 17 |
|
|
add_executable(rlam lam.c) |
| 18 |
|
|
target_link_libraries(rlam rtrad) |
| 19 |
|
|
|
| 20 |
|
|
add_executable(tabfunc tabfunc.c) |
| 21 |
|
|
target_link_libraries(tabfunc rtrad) |
| 22 |
|
|
|
| 23 |
|
|
add_executable(total total.c) |
| 24 |
greg |
1.4 |
target_link_libraries(total rtrad ${LIB_M}) |
| 25 |
greg |
1.1 |
|
| 26 |
greg |
1.2 |
install(TARGETS cnt ev histo icalc neaten rcalc rlam tabfunc total |
| 27 |
greg |
1.1 |
RUNTIME DESTINATION bin) |
| 28 |
greg |
1.3 |
|
| 29 |
|
|
add_subdirectory(cal) |