ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/cal/CMakeLists.txt
(Generate patch)

Comparing ray/src/cal/CMakeLists.txt (file contents):
Revision 1.4 by greg, Thu Aug 18 00:55:14 2016 UTC vs.
Revision 1.8 by greg, Thu Apr 21 02:52:40 2022 UTC

# Line 1 | Line 1
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)
# Line 17 | Line 18 | target_link_libraries(rcalc rtrad)
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 cnt ev histo icalc neaten rcalc rlam tabfunc total
31 <  RUNTIME DESTINATION bin)
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 < add_subdirectory(cal)
44 > file(GLOB_RECURSE cal_files "cal/*.*")
45 > file(COPY ${cal_files}
46 >  DESTINATION "${CMAKE_BINARY_DIR}/lib"
47 > )

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines