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.3 by greg, Wed May 30 18:31:11 2012 UTC vs.
Revision 1.7 by greg, Thu Jul 16 21:46:30 2020 UTC

# Line 17 | Line 17 | target_link_libraries(rcalc rtrad)
17   add_executable(rlam lam.c)
18   target_link_libraries(rlam rtrad)
19  
20 + add_executable(rsplit rsplit.c)
21 + target_link_libraries(rsplit rtrad)
22 +
23   add_executable(tabfunc tabfunc.c)
24   target_link_libraries(tabfunc rtrad)
25  
26   add_executable(total total.c)
27 < target_link_libraries(total ${LIB_M})
27 > target_link_libraries(total rtrad ${LIB_M})
28  
29 < install(TARGETS cnt ev histo icalc neaten rcalc rlam tabfunc total
30 <  RUNTIME DESTINATION bin)
29 > install(TARGETS
30 >  cnt
31 >  ev
32 >  histo
33 >  icalc
34 >  neaten
35 >  rcalc
36 >  rlam
37 >  rsplit
38 >  tabfunc
39 >  total
40 >  RUNTIME DESTINATION "bin"
41 > )
42  
43 < add_subdirectory(cal)
43 > file(GLOB_RECURSE cal_files "cal/*.*")
44 > file(COPY ${cal_files}
45 >  DESTINATION "${CMAKE_BINARY_DIR}/lib"
46 > )

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines