ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/cal/CMakeLists.txt
Revision: 1.8
Committed: Thu Apr 21 02:52:40 2022 UTC (2 years ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R4, HEAD
Changes since 1.7: +1 -0 lines
Log Message:
perf(cnt): improved randomness of cnt -s option with new irandom(modulus) call

File Contents

# Content
1 add_executable(cnt cnt.c)
2 target_link_libraries(cnt rtrad)
3
4 add_executable(ev ev.c)
5 target_link_libraries(ev rtrad)
6
7 add_executable(histo histo.c)
8 target_link_libraries(histo ${LIB_M})
9
10 add_executable(icalc calc.c)
11 target_link_libraries(icalc rtrad)
12
13 add_executable(neaten neat.c)
14
15 add_executable(rcalc rcalc.c)
16 target_link_libraries(rcalc rtrad)
17
18 add_executable(rlam lam.c)
19 target_link_libraries(rlam rtrad)
20
21 add_executable(rsplit rsplit.c)
22 target_link_libraries(rsplit rtrad)
23
24 add_executable(tabfunc tabfunc.c)
25 target_link_libraries(tabfunc rtrad)
26
27 add_executable(total total.c)
28 target_link_libraries(total rtrad ${LIB_M})
29
30 install(TARGETS
31 cnt
32 ev
33 histo
34 icalc
35 neaten
36 rcalc
37 rlam
38 rsplit
39 tabfunc
40 total
41 RUNTIME DESTINATION "bin"
42 )
43
44 file(GLOB_RECURSE cal_files "cal/*.*")
45 file(COPY ${cal_files}
46 DESTINATION "${CMAKE_BINARY_DIR}/lib"
47 )