David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 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) |
Tim Diekmann | aab0001 | 2017-10-10 16:26:31 +0200 | [diff] [blame] | 4 | if (POLICY CMP0048) |
| 5 | cmake_policy(SET CMP0048 NEW) |
| 6 | endif() |
Andrew Woloszyn | db0eaf9 | 2016-05-05 14:45:53 -0400 | [diff] [blame] | 7 | set_property(GLOBAL PROPERTY USE_FOLDERS ON) |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 8 | |
David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 9 | # Adhere to GNU filesystem layout conventions |
| 10 | include(GNUInstallDirs) |
| 11 | |
Matthew Albrecht | 6c5f649 | 2018-03-30 09:32:03 -0500 | [diff] [blame] | 12 | option(BUILD_SHARED_LIBS "Build Shared Libraries" OFF) |
| 13 | |
| 14 | set(LIB_TYPE STATIC) |
| 15 | |
| 16 | if(BUILD_SHARED_LIBS) |
| 17 | set(LIB_TYPE SHARED) |
| 18 | endif() |
| 19 | |
d3x0r | f8f494f | 2017-07-04 05:54:57 -0700 | [diff] [blame] | 20 | option(SKIP_GLSLANG_INSTALL "Skip installation" ${SKIP_GLSLANG_INSTALL}) |
| 21 | if(NOT ${SKIP_GLSLANG_INSTALL}) |
| 22 | set(ENABLE_GLSLANG_INSTALL ON) |
| 23 | endif() |
| 24 | |
Dominik Witczak | daff1a2 | 2016-09-27 09:51:34 +0200 | [diff] [blame] | 25 | option(ENABLE_AMD_EXTENSIONS "Enables support of AMD-specific extensions" ON) |
Henrik Rydgård | 868746a | 2016-12-20 01:56:00 +0100 | [diff] [blame] | 26 | option(ENABLE_GLSLANG_BINARIES "Builds glslangValidator and spirv-remap" ON) |
Rex Xu | 9d93a23 | 2016-05-05 12:30:44 +0800 | [diff] [blame] | 27 | |
chaoc | 0ad6a4e | 2016-12-19 16:29:34 -0800 | [diff] [blame] | 28 | option(ENABLE_NV_EXTENSIONS "Enables support of Nvidia-specific extensions" ON) |
| 29 | |
Alex Szpakowski | ff21a25 | 2017-01-09 18:10:14 -0400 | [diff] [blame] | 30 | option(ENABLE_HLSL "Enables HLSL input support" ON) |
Alex Szpakowski | 84eabf7 | 2017-01-08 21:20:25 -0400 | [diff] [blame] | 31 | |
GregF | fd34f0e | 2017-09-21 16:50:39 -0600 | [diff] [blame] | 32 | option(ENABLE_OPT "Enables spirv-opt capability if present" ON) |
| 33 | |
David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 34 | if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT AND WIN32) |
| 35 | set(CMAKE_INSTALL_PREFIX "install" CACHE STRING "..." FORCE) |
| 36 | endif() |
John Kessenich | cfc69d9 | 2017-04-28 22:04:24 -0600 | [diff] [blame] | 37 | |
| 38 | project(glslang) |
David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 39 | # make testing optional |
| 40 | include(CTest) |
David Seifert | 8f82426 | 2017-04-28 22:46:52 +0200 | [diff] [blame] | 41 | |
Rex Xu | 9d93a23 | 2016-05-05 12:30:44 +0800 | [diff] [blame] | 42 | if(ENABLE_AMD_EXTENSIONS) |
| 43 | add_definitions(-DAMD_EXTENSIONS) |
| 44 | endif(ENABLE_AMD_EXTENSIONS) |
| 45 | |
chaoc | 0ad6a4e | 2016-12-19 16:29:34 -0800 | [diff] [blame] | 46 | if(ENABLE_NV_EXTENSIONS) |
| 47 | add_definitions(-DNV_EXTENSIONS) |
| 48 | endif(ENABLE_NV_EXTENSIONS) |
| 49 | |
Alex Szpakowski | ff21a25 | 2017-01-09 18:10:14 -0400 | [diff] [blame] | 50 | if(ENABLE_HLSL) |
| 51 | add_definitions(-DENABLE_HLSL) |
| 52 | endif(ENABLE_HLSL) |
Alex Szpakowski | 84eabf7 | 2017-01-08 21:20:25 -0400 | [diff] [blame] | 53 | |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 54 | if(WIN32) |
Brad Davis | 1e194e8 | 2016-05-25 13:08:34 -0700 | [diff] [blame] | 55 | set(CMAKE_DEBUG_POSTFIX "d") |
DragoonX6 | 8155934 | 2017-03-12 04:44:55 +0100 | [diff] [blame] | 56 | if(MSVC) |
| 57 | include(ChooseMSVCCRT.cmake) |
| 58 | endif(MSVC) |
baldurk | 876a0e3 | 2015-11-16 18:03:28 +0100 | [diff] [blame] | 59 | add_definitions(-DGLSLANG_OSINCLUDE_WIN32) |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 60 | elseif(UNIX) |
baldurk | 876a0e3 | 2015-11-16 18:03:28 +0100 | [diff] [blame] | 61 | add_definitions(-DGLSLANG_OSINCLUDE_UNIX) |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 62 | else(WIN32) |
Eric Engestrom | 6a6d6dd | 2016-04-03 01:17:13 +0100 | [diff] [blame] | 63 | message("unknown platform") |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 64 | endif(WIN32) |
| 65 | |
David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 66 | if(${CMAKE_CXX_COMPILER_ID} MATCHES "GNU") |
| 67 | add_compile_options(-Wall -Wmaybe-uninitialized -Wuninitialized -Wunused -Wunused-local-typedefs |
LoopDawg | 8004d36 | 2017-09-17 10:38:52 -0600 | [diff] [blame] | 68 | -Wunused-parameter -Wunused-value -Wunused-variable -Wunused-but-set-parameter -Wunused-but-set-variable -fno-exceptions) |
David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 69 | add_compile_options(-Wno-reorder) # disable this from -Wall, since it happens all over. |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 70 | elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang") |
David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 71 | add_compile_options(-Wall -Wuninitialized -Wunused -Wunused-local-typedefs |
| 72 | -Wunused-parameter -Wunused-value -Wunused-variable) |
| 73 | add_compile_options(-Wno-reorder) # disable this from -Wall, since it happens all over. |
| 74 | endif() |
| 75 | |
| 76 | # Request C++11 |
| 77 | if(${CMAKE_VERSION} VERSION_LESS 3.1) |
| 78 | # CMake versions before 3.1 do not understand CMAKE_CXX_STANDARD |
| 79 | # remove this block once CMake >=3.1 has fixated in the ecosystem |
| 80 | add_compile_options(-std=c++11) |
| 81 | else() |
| 82 | set(CMAKE_CXX_STANDARD 11) |
| 83 | set(CMAKE_CXX_STANDARD_REQUIRED ON) |
| 84 | set(CMAKE_CXX_EXTENSIONS OFF) |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 85 | endif() |
| 86 | |
David Neto | b37dc0e | 2016-06-02 14:37:24 -0400 | [diff] [blame] | 87 | function(glslang_set_link_args TARGET) |
| 88 | # For MinGW compiles, statically link against the GCC and C++ runtimes. |
| 89 | # This avoids the need to ship those runtimes as DLLs. |
David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 90 | if(WIN32 AND ${CMAKE_CXX_COMPILER_ID} MATCHES "GNU") |
| 91 | set_target_properties(${TARGET} PROPERTIES |
| 92 | LINK_FLAGS "-static -static-libgcc -static-libstdc++") |
| 93 | endif() |
David Neto | b37dc0e | 2016-06-02 14:37:24 -0400 | [diff] [blame] | 94 | endfunction(glslang_set_link_args) |
| 95 | |
Lei Zhang | 414eb60 | 2016-03-04 16:22:34 -0500 | [diff] [blame] | 96 | # We depend on these for later projects, so they should come first. |
| 97 | add_subdirectory(External) |
| 98 | |
GregF | fd34f0e | 2017-09-21 16:50:39 -0600 | [diff] [blame] | 99 | if(NOT TARGET SPIRV-Tools-opt) |
| 100 | set(ENABLE_OPT OFF) |
| 101 | endif() |
| 102 | |
| 103 | if(ENABLE_OPT) |
| 104 | message(STATUS "optimizer enabled") |
GregF | fb03a55 | 2018-03-29 11:49:14 -0600 | [diff] [blame] | 105 | add_definitions(-DENABLE_OPT=1) |
John Kessenich | 5d8d788 | 2018-04-05 19:52:38 -0600 | [diff] [blame] | 106 | else() |
| 107 | if(ENABLE_HLSL) |
| 108 | message(STATUS "spirv-tools not linked - illegal SPIRV may be generated for HLSL") |
| 109 | endif() |
GregF | fb03a55 | 2018-03-29 11:49:14 -0600 | [diff] [blame] | 110 | add_definitions(-DENABLE_OPT=0) |
GregF | fd34f0e | 2017-09-21 16:50:39 -0600 | [diff] [blame] | 111 | endif() |
| 112 | |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 113 | add_subdirectory(glslang) |
| 114 | add_subdirectory(OGLCompilersDLL) |
Henrik Rydgård | 868746a | 2016-12-20 01:56:00 +0100 | [diff] [blame] | 115 | if(ENABLE_GLSLANG_BINARIES) |
David Seifert | 22afc38 | 2017-04-29 10:57:36 +0200 | [diff] [blame] | 116 | add_subdirectory(StandAlone) |
Henrik Rydgård | 868746a | 2016-12-20 01:56:00 +0100 | [diff] [blame] | 117 | endif() |
John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 118 | add_subdirectory(SPIRV) |
Alex Szpakowski | ff21a25 | 2017-01-09 18:10:14 -0400 | [diff] [blame] | 119 | if(ENABLE_HLSL) |
Alex Szpakowski | 84eabf7 | 2017-01-08 21:20:25 -0400 | [diff] [blame] | 120 | add_subdirectory(hlsl) |
John Kessenich | dc1a819 | 2017-01-11 14:50:16 -0700 | [diff] [blame] | 121 | endif(ENABLE_HLSL) |
Lei Zhang | 414eb60 | 2016-03-04 16:22:34 -0500 | [diff] [blame] | 122 | add_subdirectory(gtests) |