|
| 1 | +# Experimental CMake file for Mitusba |
| 2 | +# Tested only on Windows and Linux (Ubuntu 10.10) |
| 3 | +cmake_minimum_required(VERSION 2.8.3 FATAL_ERROR) |
| 4 | + |
| 5 | +# Internal variable to know whether this is the first time CMake runs |
| 6 | +if (NOT DEFINED MTS_CMAKE_INIT) |
| 7 | + set(MTS_CMAKE_INIT ON CACHE INTERNAL "Is this the initial CMake run?") |
| 8 | +else() |
| 9 | + set(MTS_CMAKE_INIT OFF CACHE INTERNAL "Is this the initial CMake run?") |
| 10 | +endif() |
| 11 | + |
| 12 | +# Allow to override the default project name "mitsuba" |
| 13 | +if (NOT DEFINED MTS_PROJECT_NAME) |
| 14 | + set(MTS_PROJECT_NAME "mitsuba") |
| 15 | +endif() |
| 16 | +project(${MTS_PROJECT_NAME}) |
| 17 | + |
| 18 | +# Tell cmake where to find the additional modules |
| 19 | +list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/data/cmake") |
| 20 | +# Make sure the cmake-provided modules use the versions they expect |
| 21 | +if(NOT CMAKE_VERSION VERSION_LESS "2.8.4") |
| 22 | + cmake_policy(SET CMP0017 NEW) |
| 23 | +endif() |
| 24 | + |
| 25 | +# Enable folders for projects in Visual Studio |
| 26 | +if (CMAKE_GENERATOR MATCHES "Visual Studio") |
| 27 | + set_property(GLOBAL PROPERTY USE_FOLDERS ON) |
| 28 | +endif() |
| 29 | + |
| 30 | +# Remove Debug from CMAKE_CONFIGURATION_TYPES as the dependencies do not contain the necessary debug libraries |
| 31 | +if(MSVC AND CMAKE_CONFIGURATION_TYPES) |
| 32 | + set(CMAKE_CONFIGURATION_TYPES Release MinSizeRel RelWithDebInfo) |
| 33 | + set(CMAKE_CONFIGURATION_TYPES "${CMAKE_CONFIGURATION_TYPES}" CACHE STRING |
| 34 | + "Remove Debug from available configuration types" |
| 35 | + FORCE) |
| 36 | +endif() |
| 37 | + |
| 38 | + |
| 39 | +# make config 'RelWithDebInfo' debuggable by disabling optimizations |
| 40 | +if(MSVC) |
| 41 | + # /MD link against release libs, /Od disable optimizations, /Ob0 |
| 42 | + if(CMAKE_C_FLAGS_RELWITHDEBINFO MATCHES "/O2") |
| 43 | + string(REGEX REPLACE "/O2" "/Od" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}") |
| 44 | + endif() |
| 45 | + if(CMAKE_CXX_FLAGS_RELWITHDEBINFO MATCHES "/O2") |
| 46 | + string(REGEX REPLACE "/O2" "/Od" CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}") |
| 47 | + endif() |
| 48 | + if(CMAKE_C_FLAGS_RELWITHDEBINFO MATCHES "/Ob1") |
| 49 | + string(REGEX REPLACE "/Ob1" "/Ob0" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}") |
| 50 | + endif() |
| 51 | + if(CMAKE_CXX_FLAGS_RELWITHDEBINFO MATCHES "/Ob1") |
| 52 | + string(REGEX REPLACE "/Ob1" "/Ob0" CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}") |
| 53 | + endif() |
| 54 | + set(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} /RTC1") |
| 55 | + set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /RTC1") |
| 56 | + list(REMOVE_DUPLICATES CMAKE_C_FLAGS_RELWITHDEBINFO) |
| 57 | + list(REMOVE_DUPLICATES CMAKE_CXX_FLAGS_RELWITHDEBINFO) |
| 58 | +endif() |
| 59 | + |
| 60 | +# Set CMAKE_BUILD_TYPE to Release by default |
| 61 | +if (MTS_CMAKE_INIT AND DEFINED CMAKE_BUILD_TYPE AND NOT CMAKE_BUILD_TYPE) |
| 62 | + set(CMAKE_BUILD_TYPE "Release" CACHE STRING |
| 63 | + "Choose the type of build, options are: Debug, Release, RelWithDebInfo, MinSizeRel." FORCE) |
| 64 | +endif() |
| 65 | + |
| 66 | +# If we are on the cluster, change the base path |
| 67 | +if(MTS_CLUSTER_COMPILATION) |
| 68 | + # For Boost |
| 69 | + #set(BOOST_EXT "/software/CentOS-6/libraries/boost-1.57") |
| 70 | + #set(BOOST_EXT "/home/neodym60/renderers") |
| 71 | + set(BOOST_EXT "/home/u00068/dependencies") |
| 72 | + |
| 73 | + set(BOOST_ROOT "${BOOST_EXT}") |
| 74 | + set(BOOST_LIBRARYDIR "${BOOST_EXT}/lib") |
| 75 | + set(Boost_NO_SYSTEM_PATHS ON) |
| 76 | + set(BOOST_INCLUDEDIR "${BOOST_EXT}/include") |
| 77 | + |
| 78 | + # For Xerces |
| 79 | + set(XERCES_ROOT_DIR /home/u00068/dependencies) |
| 80 | + set(EIGEN_ROOT_DIR /home/u00068/dependencies) |
| 81 | + set(Eigen_INCLUDE_DIR /home/u00068/dependencies/include) |
| 82 | + set(EXTERNAL_ROOT_DIR /home/u00068/dependencies) |
| 83 | + set(GLEW_ROOT_DIR /home/u00068/dependencies) |
| 84 | +endif() |
| 85 | + |
| 86 | +# Load the required modules |
| 87 | +include (MitsubaUtil) |
| 88 | +include (MtsGetVersionInfo) |
| 89 | +include (CheckCXXSourceCompiles) |
| 90 | +include (CMakeDependentOption) |
| 91 | + |
| 92 | +# Read the version information |
| 93 | +MTS_GET_VERSION_INFO() |
| 94 | +#if (MTS_HAS_VALID_REV) |
| 95 | +# message(STATUS "mitsuba ${MTS_VERSION}-hg${MTS_REV_ID} (${MTS_DATE})") |
| 96 | +#else() |
| 97 | +# message(STATUS "mitsuba ${MTS_VERSION} (${MTS_DATE})") |
| 98 | +#endif() |
| 99 | + |
| 100 | +# Setup the build options |
| 101 | +include (MitsubaBuildOptions) |
| 102 | + |
| 103 | +# Find the external libraries and setup the paths |
| 104 | +include (MitsubaExternal) |
| 105 | + |
| 106 | +# Main mitsuba include directory |
| 107 | +include_directories("include") |
| 108 | + |
| 109 | +# ===== Prerequisite resources ===== |
| 110 | + |
| 111 | +# Process the XML schemas |
| 112 | +add_subdirectory(data/schema) |
| 113 | +# Add the IOR database |
| 114 | +add_subdirectory(data/ior) |
| 115 | +# Microfacet precomputed data |
| 116 | +add_subdirectory(data/microfacet) |
| 117 | + |
| 118 | + |
| 119 | +# ===== Build the support libraries ==== |
| 120 | + |
| 121 | +# Core support library |
| 122 | +add_subdirectory(src/libcore) |
| 123 | +# Rendering-related APIs |
| 124 | +add_subdirectory(src/librender) |
| 125 | +# Hardware acceleration |
| 126 | +add_subdirectory(src/libhw) |
| 127 | +# Bidirectional support library |
| 128 | +add_subdirectory(src/libbidir) |
| 129 | +# Python binding library |
| 130 | +if (BUILD_PYTHON) |
| 131 | + add_subdirectory(src/libpython) |
| 132 | +elseif(NOT PYTHON_FOUND) |
| 133 | + message(STATUS "Python was not found. The bindings will not be built.") |
| 134 | +endif() |
| 135 | + |
| 136 | + |
| 137 | +# Additional files to add to main executables |
| 138 | +if(APPLE) |
| 139 | + set(MTS_DARWIN_STUB "${CMAKE_CURRENT_SOURCE_DIR}/src/mitsuba/darwin_stub.mm") |
| 140 | + set(MTS_WINDOWS_STUB "") |
| 141 | +elseif(WIN32) |
| 142 | + set(MTS_DARWIN_STUB "") |
| 143 | + set(MTS_WINDOWS_STUB "${CMAKE_CURRENT_SOURCE_DIR}/data/windows/wmain_stub.cpp") |
| 144 | +else() |
| 145 | + set(MTS_DARWIN_STUB "") |
| 146 | + set(MTS_WINDOWS_STUB "") |
| 147 | +endif() |
| 148 | + |
| 149 | + |
| 150 | +# ===== Build the applications ===== |
| 151 | + |
| 152 | +# Build the command-line binaries |
| 153 | +add_subdirectory(src/mitsuba) |
| 154 | + |
| 155 | +# Build the COLLADA converter |
| 156 | +if (COLLADA_FOUND) |
| 157 | + add_subdirectory(src/converter) |
| 158 | +else() |
| 159 | + message(STATUS "Collada DOM was not found. The importer will not be built.") |
| 160 | +endif() |
| 161 | + |
| 162 | +# Build the Qt-based GUI binaries |
| 163 | +if (BUILD_GUI) |
| 164 | + add_subdirectory(src/mtsgui) |
| 165 | +endif() |
| 166 | + |
| 167 | + |
| 168 | +# ===== Build the plugins ===== |
| 169 | + |
| 170 | +# Utilities |
| 171 | +add_subdirectory(src/utils) |
| 172 | +# Surface scattering models |
| 173 | +add_subdirectory(src/bsdfs) |
| 174 | +# Phase functions |
| 175 | +add_subdirectory(src/phase) |
| 176 | +# Intersection shapes |
| 177 | +add_subdirectory(src/shapes) |
| 178 | +# Sample generators |
| 179 | +add_subdirectory(src/samplers) |
| 180 | +# Reconstruction filters |
| 181 | +add_subdirectory(src/rfilters) |
| 182 | +# Film implementations |
| 183 | +add_subdirectory(src/films) |
| 184 | +# Sensors |
| 185 | +add_subdirectory(src/sensors) |
| 186 | +# Emitters |
| 187 | +add_subdirectory(src/emitters) |
| 188 | +# Participating media |
| 189 | +add_subdirectory(src/medium) |
| 190 | +# Volumetric data sources |
| 191 | +add_subdirectory(src/volume) |
| 192 | +# Sub-surface integrators |
| 193 | +add_subdirectory(src/subsurface) |
| 194 | +# Texture types |
| 195 | +add_subdirectory(src/textures) |
| 196 | +# Integrators |
| 197 | +add_subdirectory(src/integrators) |
| 198 | +# Testcases |
| 199 | +add_subdirectory(src/tests) |
| 200 | + |
| 201 | + |
| 202 | +# ===== Packaging ===== |
| 203 | + |
| 204 | +# Use a subdirectory to enforce that packaging runs after all other targets |
| 205 | +add_subdirectory(data/cmake/packaging) |
0 commit comments