-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeLists.txt
132 lines (106 loc) · 4.38 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
cmake_minimum_required(VERSION 3.7.0)
project(blazert CXX)
# include build option flags
include(cmake/build_options.cmake)
# turn on test coverage
if(TEST_COVERAGE)
set(COVERAGE_FLAGS "--coverage")
else()
set(COVERAGE_FLAGS "")
endif()
# add library target
add_library(blazeRT INTERFACE)
file(GLOB_RECURSE BLAZERT_FILES blazert/*.h)
target_sources(blazeRT INTERFACE ${BLAZERT_FILES})
target_include_directories(blazeRT INTERFACE blazert/)
include(cmake/compiler_warnings.cmake)
set_project_warnings(blazeRT INTERFACE)
# Compiler Flags
set(CMAKE_CXX_STANDARD 17)
if (CMAKE_COMPILER_IS_GNUCXX)
set(CMAKE_CXX_FLAGS "-std=c++17 -O3 -fPIC -funroll-loops -march=native ${COVERAGE_FLAGS}")
elseif (MSVC)
# this currently works, but is not really the way to go..
set(CMAKE_CXX_FLAGS "/std:c++17 /Wall /arch:AVX")
else ()
set(CMAKE_CXX_FLAGS "-std=c++17 -O3 -fPIC -funroll-loops -march=native -fno-finite-math-only -fno-signed-zeros -freciprocal-math -ffp-contract=fast")
endif (CMAKE_COMPILER_IS_GNUCXX)
if (FORCE_COLOR_OUTPUT)
if (CMAKE_COMPILER_IS_GNUCXX)
add_compile_options(-fdiagnostics-color=always)
else ()
add_compile_options(-fcolor-diagnostics)
endif ()
endif (FORCE_COLOR_OUTPUT)
include(CheckCXXCompilerFlag)
include(GNUInstallDirs)
if (NOT ("${BLAZE_INCLUDE_OVERRIDE}" STREQUAL ""))
INCLUDE_DIRECTORIES(${BLAZE_INCLUDE_OVERRIDE})
else ()
FIND_PACKAGE(blaze 3.7)
INCLUDE_DIRECTORIES(${BLAZE_INCLUDE_DIRS})
endif ()
if (EMBREE_BACKEND)
find_package(embree 3.9)
endif ()
find_package(Threads)
if (ENABLE_OMP)
find_package(OpenMP)
if (OpenMP_CXX_FOUND)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
link_libraries(OpenMP::OpenMP_CXX)
include_directories(${OpenMP_CXX_INCLUDE_DIRS})
endif ()
endif ()
if (BUILD_TEST)
enable_testing()
add_subdirectory(test)
find_package(ImageMagick COMPONENTS compare QUIET)
if (NOT ImageMagick_compare_FOUND)
message(WARNING "Cannot find ImageMagick's compare tool. Images will not be compared to the reference.")
else ()
add_test(
NAME "render_trimesh"
COMMAND
${CMAKE_COMMAND}
-DCOMPARE_EXECUTABLE=${ImageMagick_compare_EXECUTABLE}
-DRENDER_EXECUTABLE=${CMAKE_BINARY_DIR}/examples/renderer/renderer
-DREFERENCE=${CMAKE_SOURCE_DIR}/examples/baseline/renderer.ppm
-DOUTPUT=${CMAKE_SOURCE_DIR}/examples/render.ppm
-DDIFFERENCE=${CMAKE_CURRENT_BINARY_DIR}/difference_renderer.png
-P ${PROJECT_SOURCE_DIR}/cmake/compare_image_test.cmake
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/examples)
add_test(
NAME "render_other_primitives"
COMMAND
${CMAKE_COMMAND}
-DCOMPARE_EXECUTABLE=${ImageMagick_compare_EXECUTABLE}
-DRENDER_EXECUTABLE=${CMAKE_BINARY_DIR}/examples/scene_primitives/scene_primitives
-DREFERENCE=${CMAKE_SOURCE_DIR}/examples/baseline/scene_primitives.png
-DOUTPUT=${CMAKE_SOURCE_DIR}/examples/render.png
-DDIFFERENCE=${CMAKE_CURRENT_BINARY_DIR}/difference_scene_primitives.png
-P ${PROJECT_SOURCE_DIR}/cmake/compare_image_test.cmake
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/examples)
endif ()
endif ()
if (BUILD_EXAMPLES)
add_subdirectory(examples)
endif ()
if (BUILD_BENCHMARK)
add_subdirectory(benchmarks)
endif ()
set(BLAZERT_VERSION_NUMBER 20.2.1)
set(BLAZERT_VERSION_STRING ${BLAZERT_VERSION_NUMBER})
set(BLAZERT_DEFINITIONS "")
set(BLAZERT_INCLUDE_DIR "${CMAKE_INSTALL_PREFIX}/include")
set(BLAZERT_ROOT_DIR ${CMAKE_INSTALL_PREFIX})
include(CMakePackageConfigHelpers)
configure_package_config_file(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/blazert.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/blazertConfig.cmake
PATH_VARS BLAZERT_INCLUDE_DIR BLAZERT_ROOT_DIR
INSTALL_DESTINATION ${CMAKE_INSTALL_DATADIR}/blazert/cmake
NO_CHECK_REQUIRED_COMPONENTS_MACRO)
write_basic_package_version_file(blazertConfigVersion.cmake VERSION ${BLAZERT_VERSION_NUMBER} COMPATIBILITY SameMajorVersion)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/blazertConfig.cmake ${CMAKE_CURRENT_BINARY_DIR}/blazertConfigVersion.cmake DESTINATION ${CMAKE_INSTALL_DATADIR}/blazert/cmake)
install(DIRECTORY blazert DESTINATION include)