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, 1 month 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

# User Rev Content
1 greg 1.1 add_executable(cnt cnt.c)
2 greg 1.8 target_link_libraries(cnt rtrad)
3 greg 1.1
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 greg 1.6 add_executable(rsplit rsplit.c)
22     target_link_libraries(rsplit rtrad)
23    
24 greg 1.1 add_executable(tabfunc tabfunc.c)
25     target_link_libraries(tabfunc rtrad)
26    
27     add_executable(total total.c)
28 greg 1.4 target_link_libraries(total rtrad ${LIB_M})
29 greg 1.1
30 greg 1.5 install(TARGETS
31     cnt
32     ev
33     histo
34     icalc
35     neaten
36     rcalc
37     rlam
38 greg 1.7 rsplit
39 greg 1.5 tabfunc
40     total
41     RUNTIME DESTINATION "bin"
42     )
43 greg 1.3
44 greg 1.5 file(GLOB_RECURSE cal_files "cal/*.*")
45     file(COPY ${cal_files}
46     DESTINATION "${CMAKE_BINARY_DIR}/lib"
47     )