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