1 # increase to 3.1 once all major distributions
2 # include a version of CMake >= 3.1
3 cmake_minimum_required(VERSION 2.8.12)
5 cmake_policy(SET CMP0048 NEW)
7 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
9 # Enable compile commands database
10 set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
12 # Adhere to GNU filesystem layout conventions
13 include(GNUInstallDirs)
15 # Needed for CMAKE_DEPENDENT_OPTION macro
16 include(CMakeDependentOption)
18 option(BUILD_SHARED_LIBS "Build Shared Libraries" OFF)
19 option(BUILD_EXTERNAL "Build external dependencies in /External" ON)
27 option(SKIP_GLSLANG_INSTALL "Skip installation" ${SKIP_GLSLANG_INSTALL})
28 if(NOT ${SKIP_GLSLANG_INSTALL})
29 set(ENABLE_GLSLANG_INSTALL ON)
31 option(ENABLE_SPVREMAPPER "Enables building of SPVRemapper" ON)
33 option(ENABLE_GLSLANG_BINARIES "Builds glslangValidator and spirv-remap" ON)
35 option(ENABLE_GLSLANG_JS
36 "If using Emscripten, build glslang.js. Otherwise, builds a sample executable for binary-size testing." OFF)
37 CMAKE_DEPENDENT_OPTION(ENABLE_GLSLANG_WEBMIN
38 "Reduces glslang to minimum needed for web use"
39 OFF "ENABLE_GLSLANG_JS"
41 CMAKE_DEPENDENT_OPTION(ENABLE_GLSLANG_WEBMIN_DEVEL
42 "For ENABLE_GLSLANG_WEBMIN builds, enables compilation error messages"
43 OFF "ENABLE_GLSLANG_WEBMIN"
45 CMAKE_DEPENDENT_OPTION(ENABLE_EMSCRIPTEN_SINGLE_FILE
46 "If using Emscripten, enables SINGLE_FILE build"
47 OFF "ENABLE_GLSLANG_JS AND EMSCRIPTEN"
49 CMAKE_DEPENDENT_OPTION(ENABLE_EMSCRIPTEN_ENVIRONMENT_NODE
50 "If using Emscripten, builds to run on Node instead of Web"
51 OFF "ENABLE_GLSLANG_JS AND EMSCRIPTEN"
54 CMAKE_DEPENDENT_OPTION(ENABLE_HLSL
55 "Enables HLSL input support"
56 ON "NOT ENABLE_GLSLANG_WEBMIN"
59 option(ENABLE_RTTI "Enables RTTI" OFF)
60 option(ENABLE_OPT "Enables spirv-opt capability if present" ON)
61 option(ENABLE_PCH "Enables Precompiled header" ON)
62 option(ENABLE_CTEST "Enables testing" ON)
64 if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT AND WIN32)
65 set(CMAKE_INSTALL_PREFIX "install" CACHE STRING "..." FORCE)
68 option(USE_CCACHE "Use ccache" OFF)
70 find_program(CCACHE_FOUND ccache)
72 set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
76 # Precompiled header macro. Parameters are source file list and filename for pch cpp file.
77 macro(glslang_pch SRCS PCHCPP)
78 if(MSVC AND CMAKE_GENERATOR MATCHES "^Visual Studio" AND ENABLE_PCH)
79 set(PCH_NAME "$(IntDir)\\pch.pch")
80 # make source files use/depend on PCH_NAME
81 set_source_files_properties(${${SRCS}} PROPERTIES COMPILE_FLAGS "/Yupch.h /FIpch.h /Fp${PCH_NAME} /Zm300" OBJECT_DEPENDS "${PCH_NAME}")
82 # make PCHCPP file compile and generate PCH_NAME
83 set_source_files_properties(${PCHCPP} PROPERTIES COMPILE_FLAGS "/Ycpch.h /Fp${PCH_NAME} /Zm300" OBJECT_OUTPUTS "${PCH_NAME}")
84 list(APPEND ${SRCS} "${PCHCPP}")
95 add_definitions(-DENABLE_HLSL)
98 if(ENABLE_GLSLANG_WEBMIN)
99 add_definitions(-DGLSLANG_WEB)
100 if(ENABLE_GLSLANG_WEBMIN_DEVEL)
101 add_definitions(-DGLSLANG_WEB_DEVEL)
102 endif(ENABLE_GLSLANG_WEBMIN_DEVEL)
103 endif(ENABLE_GLSLANG_WEBMIN)
106 set(CMAKE_DEBUG_POSTFIX "d")
108 include(ChooseMSVCCRT.cmake)
110 add_definitions(-DGLSLANG_OSINCLUDE_WIN32)
112 add_definitions(-DGLSLANG_OSINCLUDE_UNIX)
114 message("unknown platform")
117 if(${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
118 add_compile_options(-Wall -Wmaybe-uninitialized -Wuninitialized -Wunused -Wunused-local-typedefs
119 -Wunused-parameter -Wunused-value -Wunused-variable -Wunused-but-set-parameter -Wunused-but-set-variable -fno-exceptions)
120 add_compile_options(-Wno-reorder) # disable this from -Wall, since it happens all over.
122 add_compile_options(-fno-rtti)
124 if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS "9.0.0")
125 add_compile_options(-Werror=deprecated-copy)
127 elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
128 add_compile_options(-Wall -Wuninitialized -Wunused -Wunused-local-typedefs
129 -Wunused-parameter -Wunused-value -Wunused-variable)
130 add_compile_options(-Wno-reorder) # disable this from -Wall, since it happens all over.
132 add_compile_options(-fno-rtti)
134 elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC")
136 add_compile_options(/GR-) # Disable RTTI
140 if(ENABLE_GLSLANG_JS)
142 add_compile_options(/Os /GR-)
144 add_compile_options(-Os -fno-exceptions)
145 if(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
146 add_compile_options(-Wno-unused-parameter)
147 add_compile_options(-Wno-unused-variable -Wno-unused-const-variable)
150 endif(ENABLE_GLSLANG_JS)
153 if(${CMAKE_VERSION} VERSION_LESS 3.1)
154 # CMake versions before 3.1 do not understand CMAKE_CXX_STANDARD
155 # remove this block once CMake >=3.1 has fixated in the ecosystem
156 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
158 set(CMAKE_CXX_STANDARD 11)
159 set(CMAKE_CXX_STANDARD_REQUIRED ON)
160 set(CMAKE_CXX_EXTENSIONS OFF)
163 function(glslang_set_link_args TARGET)
164 # For MinGW compiles, statically link against the GCC and C++ runtimes.
165 # This avoids the need to ship those runtimes as DLLs.
166 if(WIN32 AND ${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
167 set_target_properties(${TARGET} PROPERTIES
168 LINK_FLAGS "-static -static-libgcc -static-libstdc++")
170 endfunction(glslang_set_link_args)
172 # CMake needs to find the right version of python, right from the beginning,
173 # otherwise, it will find the wrong version and fail later
174 if(BUILD_EXTERNAL AND IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/External)
175 find_package(PythonInterp 3 REQUIRED)
177 # We depend on these for later projects, so they should come first.
178 add_subdirectory(External)
181 if(NOT TARGET SPIRV-Tools-opt)
186 message(STATUS "optimizer enabled")
187 add_definitions(-DENABLE_OPT=1)
190 message(STATUS "spirv-tools not linked - illegal SPIRV may be generated for HLSL")
192 add_definitions(-DENABLE_OPT=0)
195 add_subdirectory(glslang)
196 add_subdirectory(OGLCompilersDLL)
197 if(ENABLE_GLSLANG_BINARIES)
198 add_subdirectory(StandAlone)
200 add_subdirectory(SPIRV)
202 add_subdirectory(hlsl)
205 add_subdirectory(gtests)
209 # glslang-testsuite runs a bash script on Windows.
210 # Make sure to use '-o igncr' flag to ignore carriage returns (\r).
211 set(IGNORE_CR_FLAG "")
213 set(IGNORE_CR_FLAG -o igncr)
216 if (CMAKE_CONFIGURATION_TYPES)
217 set(RESULTS_PATH ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIGURATION>/localResults)
218 set(VALIDATOR_PATH ${CMAKE_CURRENT_BINARY_DIR}/StandAlone/$<CONFIGURATION>/glslangValidator)
219 set(REMAP_PATH ${CMAKE_CURRENT_BINARY_DIR}/StandAlone/$<CONFIGURATION>/spirv-remap)
220 else(CMAKE_CONFIGURATION_TYPES)
221 set(RESULTS_PATH ${CMAKE_CURRENT_BINARY_DIR}/localResults)
222 set(VALIDATOR_PATH ${CMAKE_CURRENT_BINARY_DIR}/StandAlone/glslangValidator)
223 set(REMAP_PATH ${CMAKE_CURRENT_BINARY_DIR}/StandAlone/spirv-remap)
224 endif(CMAKE_CONFIGURATION_TYPES)
226 add_test(NAME glslang-testsuite
227 COMMAND bash ${IGNORE_CR_FLAG} runtests ${RESULTS_PATH} ${VALIDATOR_PATH} ${REMAP_PATH}
228 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Test/)