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

Comparing ray/src/util/CMakeLists.txt (file contents):
Revision 1.32 by greg, Fri Jul 19 22:25:03 2019 UTC vs.
Revision 1.42 by greg, Mon Oct 18 16:20:21 2021 UTC

# Line 34 | Line 34 | target_link_libraries(vwrays rtrad)
34   add_executable(vwright vwright.c)
35   target_link_libraries(vwright rtrad)
36  
37 + add_executable(dcglare dcglare.c cmbsdf.c cmatrix.c cmglare.c)
38 + target_link_libraries(dcglare rtrad)
39 +
40   #the next few libraries all need to include header files from the rt directory
41   include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../rt")
42  
# Line 62 | Line 65 | add_executable(rfluxmtx rfluxmtx.c)
65   target_link_libraries(rfluxmtx rtrad)
66  
67   add_executable(evalglare evalglare.c pictool.c)
68 < target_link_libraries(evalglare rtrad libreetz)
68 > target_link_libraries(evalglare rtrad reetz)
69  
70   add_executable(radcompare radcompare.c)
71   target_link_libraries(radcompare rtrad)
72  
73 < add_executable(rcode_depth rcode_depth.c depthcodec.c)
73 > add_executable(rcode_depth rcode_depth.c)
74   target_link_libraries(rcode_depth rtrad)
75  
76 < add_executable(rcode_norm rcode_norm.c normcodec.c)
76 > add_executable(rcode_norm rcode_norm.c)
77   target_link_libraries(rcode_norm rtrad)
78  
79 < add executable(rcode_ident rcode_ident.c idmap.c)
79 > add_executable(rcode_ident rcode_ident.c)
80   target_link_libraries(rcode_ident rtrad)
81  
82   if(X11_FOUND)
# Line 126 | Line 129 | if(UNIX)
129   endif()
130  
131   install(TARGETS
132 +  dcglare
133    dctimestep
134    eplus_adduvf
135    evalglare
# Line 136 | Line 140 | install(TARGETS
140    radcompare
141    ranimate
142    ranimove
143 +  rcode_depth
144 +  rcode_ident
145 +  rcode_norm
146    rcollate
147    rfluxmtx
148    rmtxop
# Line 162 | Line 169 | file(COPY
169   )
170  
171   if(WIN32)
172 +   add_custom_target(bsdfview ALL
173 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/bsdfview.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/bsdfview.exe -d
174 +  )
175 +  add_custom_target(genBSDF ALL
176 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/genBSDF.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/genBSDF.exe -d
177 +  )
178 +  add_custom_target(genklemsamp ALL
179 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/genklemsamp.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/genklemsamp.exe -d
180 +  )
181 +  add_custom_target(genskyvec ALL
182 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/genskyvec.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/genskyvec.exe -d
183 +  )
184 +  add_custom_target(ltpict ALL
185 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/ltpict.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/ltpict.exe -d
186 +  )
187 +  add_custom_target(ltview ALL
188 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/ltview.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/ltview.exe -d
189 +  )
190 +  add_custom_target(objpict ALL
191 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/objpict.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/objpict.exe -d
192 +  )
193 +  add_custom_target(objview ALL
194 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/objview.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/objview.exe -d
195 +  )
196 +  add_custom_target(genambpos ALL
197 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/genambpos.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/genambpos.exe -d
198 +  )
199 +  add_custom_target(rcode2bmp ALL
200 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/rcode2bmp.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/rcode2bmp.exe -d
201 +  )
202 +  add_custom_target(rtpict ALL
203 +    COMMAND pp ${CMAKE_CURRENT_SOURCE_DIR}/rtpict.pl -o ${CMAKE_CURRENT_SOURCE_DIR}/rtpict.exe -d
204 +  )
205    install(PROGRAMS
206 <    bsdfview.pl
207 <    genBSDF.pl
208 <    genklemsamp.pl
209 <    genskyvec.pl
210 <    ltpict.pl
211 <    ltview.pl
212 <    objpict.pl
213 <    objview.pl
206 >    bsdfview.exe
207 >    genBSDF.exe
208 >    genklemsamp.exe
209 >    genskyvec.exe
210 >    ltpict.exe
211 >    ltview.exe
212 >    objpict.exe
213 >    objview.exe
214 >    genambpos.exe
215 >    rcode2bmp.exe
216 >    rtpict.exe
217      DESTINATION "bin"
218    )
219   else()
# Line 180 | Line 223 | else()
223      dayfact.csh
224      fieldcomb.csh
225      genBSDF.pl
226 <    genambpos.csh
226 >    genambpos.pl
227      genklemsamp.pl
228      genskyvec.pl
229      glare.csh
# Line 190 | Line 233 | else()
233      objpict.pl
234      objview.pl
235      raddepend.csh
236 +    rcode2bmp.pl
237      rlux.csh
238      rtpict.pl
195    trad.wsh
239      vinfo.csh
240 +  )
241 +  add_custom_target(trad ALL
242 +    COMMAND csh -f ${CMAKE_CURRENT_SOURCE_DIR}/tradinstall.csh ../../build/bin ../../build/lib
243 +  )
244 +  install(FILES
245 +    ${CMAKE_BINARY_DIR}/bin/trad
246 +    DESTINATION "bin"
247 +    PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ
248    )
249   endif()

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines