17 |
|
add_executable(rlam lam.c) |
18 |
|
target_link_libraries(rlam rtrad) |
19 |
|
|
20 |
+ |
add_executable(rsplit rsplit.c) |
21 |
+ |
target_link_libraries(rsplit rtrad) |
22 |
+ |
|
23 |
|
add_executable(tabfunc tabfunc.c) |
24 |
|
target_link_libraries(tabfunc rtrad) |
25 |
|
|
26 |
|
add_executable(total total.c) |
27 |
|
target_link_libraries(total rtrad ${LIB_M}) |
28 |
|
|
29 |
< |
install(TARGETS cnt ev histo icalc neaten rcalc rlam tabfunc total |
30 |
< |
RUNTIME DESTINATION bin) |
29 |
> |
install(TARGETS |
30 |
> |
cnt |
31 |
> |
ev |
32 |
> |
histo |
33 |
> |
icalc |
34 |
> |
neaten |
35 |
> |
rcalc |
36 |
> |
rlam |
37 |
> |
rsplit |
38 |
> |
tabfunc |
39 |
> |
total |
40 |
> |
RUNTIME DESTINATION "bin" |
41 |
> |
) |
42 |
|
|
43 |
< |
add_subdirectory(cal) |
43 |
> |
file(GLOB_RECURSE cal_files "cal/*.*") |
44 |
> |
file(COPY ${cal_files} |
45 |
> |
DESTINATION "${CMAKE_BINARY_DIR}/lib" |
46 |
> |
) |