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