| 1 |
greg |
2.1 |
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../rt)
|
| 2 |
|
|
|
| 3 |
|
|
add_executable(genbeads genbeads.c hermite3.c)
|
| 4 |
|
|
target_link_libraries(genbeads ${LIB_M})
|
| 5 |
|
|
|
| 6 |
|
|
add_executable(genblinds genblinds.c)
|
| 7 |
|
|
target_link_libraries(genblinds ${LIB_M})
|
| 8 |
|
|
|
| 9 |
|
|
add_executable(genbox genbox.c)
|
| 10 |
|
|
|
| 11 |
|
|
add_executable(genbranch genbranch.c)
|
| 12 |
|
|
target_link_libraries(genbranch ${LIB_M})
|
| 13 |
|
|
|
| 14 |
|
|
add_executable(gencatenary gencat.c)
|
| 15 |
|
|
target_link_libraries(gencatenary rtrad)
|
| 16 |
|
|
|
| 17 |
|
|
add_executable(genclock genclock.c)
|
| 18 |
|
|
target_link_libraries(genclock ${LIB_M})
|
| 19 |
|
|
|
| 20 |
|
|
add_executable(gendaylit gendaylit.c sun.c)
|
| 21 |
|
|
target_link_libraries(gendaylit rtrad)
|
| 22 |
|
|
|
| 23 |
|
|
add_executable(genmarble genmarble.c ../common/random.h)
|
| 24 |
|
|
target_link_libraries(genmarble ${LIB_M})
|
| 25 |
|
|
|
| 26 |
|
|
add_executable(genprism genprism.c)
|
| 27 |
|
|
target_link_libraries(genprism ${LIB_M})
|
| 28 |
|
|
|
| 29 |
|
|
add_executable(genrev genrev.c )
|
| 30 |
|
|
target_link_libraries(genrev rtrad)
|
| 31 |
|
|
|
| 32 |
|
|
add_executable(gensky gensky.c sun.c)
|
| 33 |
|
|
target_link_libraries(gensky ${LIB_M})
|
| 34 |
|
|
|
| 35 |
|
|
add_executable(gensurf gensurf.c)
|
| 36 |
|
|
target_link_libraries(gensurf rtrad)
|
| 37 |
|
|
|
| 38 |
|
|
add_executable(genworm genworm.c)
|
| 39 |
|
|
target_link_libraries(genworm rtrad)
|
| 40 |
|
|
|
| 41 |
|
|
add_executable(mkillum mkillum.c mkillum2.c mkillum3.c)
|
| 42 |
|
|
target_link_libraries(mkillum raycalls radiance rtrad)
|
| 43 |
|
|
|
| 44 |
|
|
add_executable(mksource mksource.c)
|
| 45 |
|
|
target_link_libraries(mksource raycalls radiance rtrad)
|
| 46 |
|
|
|
| 47 |
|
|
add_executable(replmarks replmarks.c)
|
| 48 |
|
|
target_link_libraries(replmarks rtrad)
|
| 49 |
|
|
|
| 50 |
|
|
add_executable(xform xform.c)
|
| 51 |
|
|
target_link_libraries(xform rtrad)
|
| 52 |
|
|
|
| 53 |
|
|
install(TARGETS genbox gensky xform genblinds genrev genworm gendaylit gensurf
|
| 54 |
|
|
genprism replmarks mkillum mksource genclock
|
| 55 |
|
|
DESTINATION bin)
|
| 56 |
|
|
|
| 57 |
|
|
install(FILES illum.cal rev.cal skybright.cal surf.cal clockface.hex glaze1.cal
|
| 58 |
greg |
2.2 |
glaze2.cal perezlum.cal coeff_perez.dat defangle.dat
|
| 59 |
|
|
DESTINATION lib)
|
| 60 |
|
|
|
| 61 |
|
|
if (NOT WIN32)
|
| 62 |
|
|
install(PROGRAMS glaze.csh DESTINATION bin RENAME glaze)
|
| 63 |
|
|
endif() |