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

File Contents

# Content
1 # RCSid $Id$
2
3 add_executable(getbbox
4 bbox.c
5 getbbox.c
6 init2otypes.c
7 readobj2.c
8 )
9 target_link_libraries(getbbox rtrad)
10
11 add_executable(obj2mesh
12 cvmesh.c
13 o_face.c
14 obj2mesh.c
15 wfconv.c
16 writemesh.c
17 )
18 target_link_libraries(obj2mesh rtrad)
19
20 add_executable(oconv
21 bbox.c
22 initotypes.c
23 o_cone.c
24 o_face.c
25 o_instance.c
26 oconv.c
27 sphere.c
28 writeoct.c
29 )
30 target_link_libraries(oconv rtrad)
31
32 install(TARGETS getbbox obj2mesh oconv
33 RUNTIME DESTINATION "bin"
34 )