2 |
|
create_version_file("${VERSION_FILE}") |
3 |
|
|
4 |
|
add_library(radiance |
5 |
< |
ambcomp.c ambient.c ambio.c aniso.c data.c dielectric.c fprism.c freeobjmem.c |
6 |
< |
func.c glass.c initotypes.c m_alias.c m_brdf.c m_bsdf.c m_clip.c m_direct.c |
7 |
< |
m_mirror.c m_mist.c mx_func.c mx_data.c noise3.c normal.c o_face.c o_cone.c |
8 |
< |
o_instance.c o_mesh.c p_data.c p_func.c preload.c raytrace.c renderopts.c |
9 |
< |
source.c sphere.c srcobstr.c srcsupp.c srcsamp.c t_data.c t_func.c text.c |
10 |
< |
"${VERSION_FILE}" virtuals.c) |
5 |
> |
"${VERSION_FILE}" |
6 |
> |
../common/paths.c |
7 |
> |
../common/platform.h |
8 |
> |
../common/random.h |
9 |
> |
ambcomp.c |
10 |
> |
ambient.c |
11 |
> |
ambio.c |
12 |
> |
aniso.c |
13 |
> |
ashikhmin.c |
14 |
> |
data.c |
15 |
> |
dielectric.c |
16 |
> |
fprism.c |
17 |
> |
freeobjmem.c |
18 |
> |
func.c |
19 |
> |
glass.c |
20 |
> |
initotypes.c |
21 |
> |
m_alias.c |
22 |
> |
m_brdf.c |
23 |
> |
m_bsdf.c |
24 |
> |
m_clip.c |
25 |
> |
m_direct.c |
26 |
> |
m_mirror.c |
27 |
> |
m_mist.c |
28 |
> |
mx_data.c |
29 |
> |
mx_func.c |
30 |
> |
noise3.c |
31 |
> |
normal.c |
32 |
> |
o_cone.c |
33 |
> |
o_face.c |
34 |
> |
o_instance.c |
35 |
> |
o_mesh.c |
36 |
> |
p_data.c |
37 |
> |
p_func.c |
38 |
> |
pmap.c |
39 |
> |
pmapamb.c |
40 |
> |
pmapbias.c |
41 |
> |
pmapcontrib.c |
42 |
> |
pmapdata.c |
43 |
> |
pmapdiag.c |
44 |
> |
pmapio.c |
45 |
> |
pmapmat.c |
46 |
> |
pmapopt.c |
47 |
> |
pmapparm.c |
48 |
> |
pmaprand.c |
49 |
> |
pmapray.c |
50 |
> |
pmapsrc.c |
51 |
> |
pmaptype.c |
52 |
> |
pmcontrib2.c |
53 |
> |
pmutil.c |
54 |
> |
preload.c |
55 |
> |
raytrace.c |
56 |
> |
renderopts.c |
57 |
> |
source.c |
58 |
> |
sphere.c |
59 |
> |
srcobstr.c |
60 |
> |
srcsamp.c |
61 |
> |
srcsupp.c |
62 |
> |
t_data.c |
63 |
> |
t_func.c |
64 |
> |
text.c |
65 |
> |
virtuals.c |
66 |
> |
) |
67 |
|
|
68 |
|
if(WIN32) |
69 |
|
set(rayp_SOURCES raypwin.c) |
73 |
|
|
74 |
|
add_library(raycalls raycalls.c ${rayp_SOURCES} rayfifo.c) |
75 |
|
|
76 |
< |
add_executable(rtrace rtmain.c rtrace.c duphead.c persist.c) |
76 |
> |
add_executable(rtrace rtmain.c rtrace.c duphead.c persist.c) |
77 |
|
target_link_libraries(rtrace raycalls radiance rtrad) |
78 |
|
|
79 |
|
add_executable(rpict rpmain.c rpict.c srcdraw.c duphead.c persist.c) |
80 |
|
target_link_libraries(rpict radiance rtrad) |
81 |
+ |
|
82 |
+ |
add_executable(lookamb lookamb.c ambio.c) |
83 |
+ |
target_link_libraries(lookamb rtrad) |
84 |
+ |
|
85 |
+ |
add_executable(rcontrib rcmain.c rcontrib.c rc2.c rc3.c) |
86 |
+ |
target_link_libraries(rcontrib radiance rtrad) |
87 |
+ |
|
88 |
+ |
add_executable(mkpmap mkpmap.c) |
89 |
+ |
target_link_libraries(mkpmap radiance rtrad) |
90 |
+ |
add_executable(pmapdump pmapdump.c pmaptype.c pmapparm.c) |
91 |
+ |
target_link_libraries(pmapdump raycalls radiance rtrad) |
92 |
+ |
|
93 |
+ |
set(targets_to_install |
94 |
+ |
lookamb |
95 |
+ |
mkpmap |
96 |
+ |
pmapdump |
97 |
+ |
radiance |
98 |
+ |
raycalls |
99 |
+ |
rcontrib |
100 |
+ |
rpict |
101 |
+ |
rtrace |
102 |
+ |
) |
103 |
+ |
|
104 |
|
if(X11_FOUND) |
105 |
|
set(X11_SOURCES x11.c x11twind.c) |
106 |
< |
add_definitions("-DHAS_X11") |
106 |
> |
add_definitions(-DHAS_X11) |
107 |
|
endif() |
108 |
< |
if(QT4_FOUND) |
109 |
< |
add_definitions("-DHAS_QT") |
108 |
> |
if(Qt5Widgets_DIR) |
109 |
> |
include_directories(${Qt5Widgets_INCLUDE_DIRS}) |
110 |
> |
add_definitions(-DHAS_QT) |
111 |
|
endif() |
112 |
< |
add_executable(rvu |
113 |
< |
rvmain.c rview.c rv2.c rv3.c devtable.c devcomm.c editline.c ${X11_SOURCES} |
114 |
< |
colortab.c) |
115 |
< |
target_link_libraries(rvu raycalls radiance rtrad ${X11_LIBRARIES}) |
116 |
< |
# only link to rvu-qt-lib if qt is found |
117 |
< |
if(QT4_FOUND) |
118 |
< |
target_link_libraries(rvu qtrvu) |
112 |
> |
if(NOT BUILD_HEADLESS) |
113 |
> |
if(X11_FOUND OR Qt5Widgets_DIR) |
114 |
> |
add_executable(rvu |
115 |
> |
colortab.c |
116 |
> |
devcomm.c |
117 |
> |
devtable.c |
118 |
> |
editline.c |
119 |
> |
rv2.c |
120 |
> |
rv3.c |
121 |
> |
rview.c |
122 |
> |
rvmain.c |
123 |
> |
${X11_SOURCES} |
124 |
> |
) |
125 |
> |
target_link_libraries(rvu raycalls radiance rtrad ${X11_LIBRARIES}) |
126 |
> |
list(APPEND targets_to_install rvu) |
127 |
> |
|
128 |
> |
# only link to rvu-qt-lib if qt is found |
129 |
> |
if(Qt5Widgets_DIR) |
130 |
> |
target_link_libraries(rvu qtrvu) |
131 |
> |
endif() |
132 |
> |
endif() |
133 |
|
endif() |
134 |
|
|
135 |
< |
add_executable(lookamb lookamb.c ambio.c) |
136 |
< |
target_link_libraries(lookamb rtrad) |
135 |
> |
#add_test(rtrace_version "${EXECUTABLE_OUTPUT_PATH}/rtrace" -version) |
136 |
> |
#set_tests_properties(rtrace_version PROPERTIES |
137 |
> |
# PASS_REGULAR_EXPRESSION "RADIANCE" |
138 |
> |
#) |
139 |
|
|
140 |
< |
add_test(rtrace_Version ${EXECUTABLE_OUTPUT_PATH}/rtrace -version) |
141 |
< |
set_tests_properties(rtrace_Version PROPERTIES |
142 |
< |
PASS_REGULAR_EXPRESSION "RADIANCE") |
140 |
> |
install(TARGETS ${targets_to_install} |
141 |
> |
RUNTIME DESTINATION "bin" |
142 |
> |
LIBRARY DESTINATION "bin" |
143 |
> |
ARCHIVE DESTINATION "bin" |
144 |
> |
) |
145 |
> |
file(COPY rayinit.cal |
146 |
> |
DESTINATION "${CMAKE_BINARY_DIR}/lib" |
147 |
> |
) |
148 |
|
|
149 |
< |
install(TARGETS radiance raycalls rtrace rpict rvu |
150 |
< |
RUNTIME DESTINATION bin |
151 |
< |
LIBRARY DESTINATION bin |
152 |
< |
ARCHIVE DESTINATION bin) |
153 |
< |
install(FILES rayinit.cal DESTINATION bin) |
149 |
> |
#install qt.conf & Qt plugins loaded by rvu at runtime. Ignore if we are building as headless |
150 |
> |
if(NOT BUILD_HEADLESS) |
151 |
> |
get_target_property(GIF_PLUGIN Qt5::QGifPlugin LOCATION) |
152 |
> |
get_target_property(ICO_PLUGIN Qt5::QICOPlugin LOCATION) |
153 |
> |
get_target_property(JPEG_PLUGIN Qt5::QJpegPlugin LOCATION) |
154 |
> |
get_target_property(TIFF_PLUGIN Qt5::QTiffPlugin LOCATION) |
155 |
> |
install(PROGRAMS "${GIF_PLUGIN}" "${ICO_PLUGIN}" "${JPEG_PLUGIN}" "${TIFF_PLUGIN}" |
156 |
> |
DESTINATION "bin/plugins/imageformats" |
157 |
> |
) |
158 |
> |
install(FILES "${CMAKE_SOURCE_DIR}/InstallRules/qt.conf" |
159 |
> |
DESTINATION "bin" |
160 |
> |
) |
161 |
> |
|
162 |
> |
if(WIN32) |
163 |
> |
get_target_property(QPA_PLUGIN Qt5::QWindowsIntegrationPlugin LOCATION) |
164 |
> |
elseif(APPLE) |
165 |
> |
get_target_property(QPA_PLUGIN Qt5::QCocoaIntegrationPlugin LOCATION) |
166 |
> |
elseif(UNIX) |
167 |
> |
get_target_property(QPA_PLUGIN Qt5::QXcbIntegrationPlugin LOCATION) |
168 |
> |
endif() |
169 |
> |
|
170 |
> |
install(PROGRAMS "${QPA_PLUGIN}" |
171 |
> |
DESTINATION "bin/plugins/platforms" |
172 |
> |
) |
173 |
> |
endif() |