7 |
|
set(LIB_M ) |
8 |
|
endif() |
9 |
|
|
10 |
– |
find_package(OpenGL) |
11 |
– |
find_package(X11) |
12 |
– |
|
10 |
|
include_directories(common) |
11 |
< |
|
11 |
> |
# create a macro to generate |
12 |
> |
macro(create_version_file version_file) |
13 |
> |
add_custom_command( |
14 |
> |
OUTPUT "${version_file}" |
15 |
> |
COMMAND "${CMAKE_COMMAND}" |
16 |
> |
-DVERSION_OUT_FILE="${version_file}" |
17 |
> |
-DVERSION_IN_FILE="${radiance_SOURCE_DIR}/src/rt/VERSION" |
18 |
> |
-DVERSION_GOLD="${radiance_SOURCE_DIR}/src/rt/Version.c" |
19 |
> |
-P "${radiance_SOURCE_DIR}/src/rt/create_version.cmake" |
20 |
> |
) |
21 |
> |
endmacro() |
22 |
|
add_subdirectory(common) |
23 |
|
add_subdirectory(cal) |
24 |
|
add_subdirectory(cv) |
29 |
|
add_subdirectory(px) |
30 |
|
add_subdirectory(rt) |
31 |
|
add_subdirectory(util) |
32 |
< |
# only use rvu if qt4 is found |
33 |
< |
if(QT4_FOUND) |
34 |
< |
add_subdirectory(qtrvu) |
32 |
> |
if(NOT BUILD_HEADLESS) |
33 |
> |
# only use qtrvu if qt5 is found |
34 |
> |
if(Qt5Widgets_DIR) |
35 |
> |
add_subdirectory(qtrvu) |
36 |
> |
endif() |
37 |
|
endif() |
29 |
– |
|