--- ray/src/util/CMakeLists.txt 2021/10/18 16:20:21 1.42 +++ ray/src/util/CMakeLists.txt 2023/12/12 16:31:45 1.48 @@ -16,6 +16,9 @@ target_link_libraries(glarendx rtrad) add_executable(rad rad.c) target_link_libraries(rad rtrad) +add_executable(rcrop rcrop.c) +target_link_libraries(rcrop rtrad) + if(WIN32) set(netproc_SOURCES win_netproc.c) else() @@ -55,6 +58,9 @@ target_link_libraries(rcollate rtrad) add_executable(rmtxop rmtxop.c rmatrix.c cmbsdf.c cmatrix.c) target_link_libraries(rmtxop rtrad) +add_executable(rcomb rcomb.c rmatrix.c cmbsdf.c cmatrix.c) +target_link_libraries(rcomb rtrad) + add_executable(wrapBSDF wrapBSDF.c) target_link_libraries(wrapBSDF rtrad) @@ -144,8 +150,10 @@ install(TARGETS rcode_ident rcode_norm rcollate + rcrop rfluxmtx rmtxop + rcomb rsensor rttree_reduce vwrays @@ -157,6 +165,7 @@ install(TARGETS file(COPY ambpos.cal disk2square.cal + hsv_rgb.cal klems_full.cal klems_half.cal klems_quarter.cal @@ -238,12 +247,12 @@ else() rtpict.pl vinfo.csh ) - add_custom_target(trad ALL - COMMAND csh -f ${CMAKE_CURRENT_SOURCE_DIR}/tradinstall.csh ../../build/bin ../../build/lib - ) - install(FILES - ${CMAKE_BINARY_DIR}/bin/trad - DESTINATION "bin" - PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ - ) + # add_custom_target(trad ALL + # COMMAND csh -f ${CMAKE_CURRENT_SOURCE_DIR}/tradinstall.csh ../../build/bin ../../build/lib + # ) + # install(FILES + # ${CMAKE_BINARY_DIR}/bin/trad + # DESTINATION "bin" + # PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE GROUP_READ + # ) endif()