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 # Adhere to GNU filesystem layout conventions
10 include(GNUInstallDirs)
12 option(BUILD_SHARED_LIBS "Build Shared Libraries" OFF)
20 option(SKIP_GLSLANG_INSTALL "Skip installation" ${SKIP_GLSLANG_INSTALL})
21 if(NOT ${SKIP_GLSLANG_INSTALL})
22 set(ENABLE_GLSLANG_INSTALL ON)
24 option(ENABLE_SPVREMAPPER "Enables building of SPVRemapper" ON)
26 option(ENABLE_AMD_EXTENSIONS "Enables support of AMD-specific extensions" ON)
27 option(ENABLE_GLSLANG_BINARIES "Builds glslangValidator and spirv-remap" ON)
29 option(ENABLE_NV_EXTENSIONS "Enables support of Nvidia-specific extensions" ON)
31 option(ENABLE_HLSL "Enables HLSL input support" ON)
33 option(ENABLE_OPT "Enables spirv-opt capability if present" ON)
35 if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT AND WIN32)
36 set(CMAKE_INSTALL_PREFIX "install" CACHE STRING "..." FORCE)
39 option(USE_CCACHE "Use ccache" OFF)
41 find_program(CCACHE_FOUND ccache)
43 set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
47 # Precompiled header macro. Parameters are source file list and filename for pch cpp file.
48 macro(glslang_pch SRCS PCHCPP)
49 if(MSVC AND CMAKE_GENERATOR MATCHES "^Visual Studio")
50 set(PCH_NAME "$(IntDir)\\pch.pch")
51 # make source files use/depend on PCH_NAME
52 set_source_files_properties(${${SRCS}} PROPERTIES COMPILE_FLAGS "/Yupch.h /FIpch.h /Fp${PCH_NAME} /Zm300" OBJECT_DEPENDS "${PCH_NAME}")
53 # make PCHCPP file compile and generate PCH_NAME
54 set_source_files_properties(${PCHCPP} PROPERTIES COMPILE_FLAGS "/Ycpch.h /Fp${PCH_NAME} /Zm300" OBJECT_OUTPUTS "${PCH_NAME}")
55 list(APPEND ${SRCS} "${PCHCPP}")
60 # make testing optional
63 if(ENABLE_AMD_EXTENSIONS)
64 add_definitions(-DAMD_EXTENSIONS)
65 endif(ENABLE_AMD_EXTENSIONS)
67 if(ENABLE_NV_EXTENSIONS)
68 add_definitions(-DNV_EXTENSIONS)
69 endif(ENABLE_NV_EXTENSIONS)
72 add_definitions(-DENABLE_HLSL)
76 set(CMAKE_DEBUG_POSTFIX "d")
78 include(ChooseMSVCCRT.cmake)
80 add_definitions(-DGLSLANG_OSINCLUDE_WIN32)
82 add_definitions(-DGLSLANG_OSINCLUDE_UNIX)
84 message("unknown platform")
87 if(${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
88 add_compile_options(-Wall -Wmaybe-uninitialized -Wuninitialized -Wunused -Wunused-local-typedefs
89 -Wunused-parameter -Wunused-value -Wunused-variable -Wunused-but-set-parameter -Wunused-but-set-variable -fno-exceptions)
90 add_compile_options(-Wno-reorder) # disable this from -Wall, since it happens all over.
91 elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
92 add_compile_options(-Wall -Wuninitialized -Wunused -Wunused-local-typedefs
93 -Wunused-parameter -Wunused-value -Wunused-variable)
94 add_compile_options(-Wno-reorder) # disable this from -Wall, since it happens all over.
98 if(${CMAKE_VERSION} VERSION_LESS 3.1)
99 # CMake versions before 3.1 do not understand CMAKE_CXX_STANDARD
100 # remove this block once CMake >=3.1 has fixated in the ecosystem
101 add_compile_options(-std=c++11)
103 set(CMAKE_CXX_STANDARD 11)
104 set(CMAKE_CXX_STANDARD_REQUIRED ON)
105 set(CMAKE_CXX_EXTENSIONS OFF)
108 function(glslang_set_link_args TARGET)
109 # For MinGW compiles, statically link against the GCC and C++ runtimes.
110 # This avoids the need to ship those runtimes as DLLs.
111 if(WIN32 AND ${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
112 set_target_properties(${TARGET} PROPERTIES
113 LINK_FLAGS "-static -static-libgcc -static-libstdc++")
115 endfunction(glslang_set_link_args)
117 # We depend on these for later projects, so they should come first.
118 add_subdirectory(External)
120 if(NOT TARGET SPIRV-Tools-opt)
125 message(STATUS "optimizer enabled")
126 add_definitions(-DENABLE_OPT=1)
129 message(STATUS "spirv-tools not linked - illegal SPIRV may be generated for HLSL")
131 add_definitions(-DENABLE_OPT=0)
134 add_subdirectory(glslang)
135 add_subdirectory(OGLCompilersDLL)
136 if(ENABLE_GLSLANG_BINARIES)
137 add_subdirectory(StandAlone)
139 add_subdirectory(SPIRV)
141 add_subdirectory(hlsl)
143 add_subdirectory(gtests)