ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/src/cal/CMakeLists.txt
Revision: 1.9
Committed: Thu Jul 24 01:24:01 2025 UTC (2 months, 2 weeks ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.8: +2 -0 lines
Log Message:
chore: Added version string to all CMakeLists.txt files

File Contents

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