--- ray/src/util/CMakeLists.txt 2013/06/05 23:30:11 1.8 +++ ray/src/util/CMakeLists.txt 2014/02/07 22:40:32 1.11 @@ -1,7 +1,7 @@ set(VERSION_FILE "${radiance_BINARY_DIR}/src/util/Version.c") create_version_file("${VERSION_FILE}") -add_executable(dctimestep dctimestep.c) +add_executable(dctimestep dctimestep.c cmbsdf.c) target_link_libraries(dctimestep rtrad) add_executable(findglare findglare.c glareval.c glaresrc.c setscan.c) @@ -26,10 +26,6 @@ target_link_libraries(ranimate rtrad) add_executable(rpiece rpiece.c "${VERSION_FILE}") target_link_libraries(rpiece rtrad) -add_executable(rtcontrib - rtcontrib.c "${VERSION_FILE}") -target_link_libraries(rtcontrib rtrad) - add_executable(vwrays vwrays.c) target_link_libraries(vwrays rtrad) @@ -48,6 +44,9 @@ target_link_libraries(rsensor raycalls radiance rtrad) add_executable(rttree_reduce rttree_reduce.c) target_link_libraries(rttree_reduce rtrad) +add_executable(rcollate rcollate.c) +target_link_libraries(rcollate rtrad) + if(X11_FOUND) add_executable(xglaresrc xglaresrc.c ${CMAKE_CURRENT_SOURCE_DIR}/../common/x11findwind.c) @@ -85,7 +84,7 @@ if(UNIX) endif() endif() install(TARGETS dctimestep findglare getinfo glarendx rad ranimate - rtcontrib vwrays vwright ranimove rsensor rttree_reduce + vwrays vwright ranimove rsensor rttree_reduce rcollate RUNTIME DESTINATION bin) if(WIN32)