2016-08-01 19:36:15 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8.11)
|
2016-05-05 18:45:53 +00:00
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
2015-06-26 22:29:10 +00:00
|
|
|
|
2016-09-27 07:51:34 +00:00
|
|
|
option(ENABLE_AMD_EXTENSIONS "Enables support of AMD-specific extensions" ON)
|
2016-05-05 04:30:44 +00:00
|
|
|
|
2016-03-04 21:22:34 +00:00
|
|
|
enable_testing()
|
|
|
|
|
2015-08-31 21:27:04 +00:00
|
|
|
set(CMAKE_INSTALL_PREFIX "install" CACHE STRING "prefix")
|
2015-06-26 22:29:10 +00:00
|
|
|
|
|
|
|
project(glslang)
|
|
|
|
|
2016-05-05 04:30:44 +00:00
|
|
|
if(ENABLE_AMD_EXTENSIONS)
|
|
|
|
add_definitions(-DAMD_EXTENSIONS)
|
|
|
|
endif(ENABLE_AMD_EXTENSIONS)
|
|
|
|
|
2015-06-26 22:29:10 +00:00
|
|
|
if(WIN32)
|
2016-05-25 20:08:34 +00:00
|
|
|
set(CMAKE_DEBUG_POSTFIX "d")
|
2015-06-26 22:29:10 +00:00
|
|
|
include(ChooseMSVCCRT.cmake)
|
2015-11-16 17:03:28 +00:00
|
|
|
add_definitions(-DGLSLANG_OSINCLUDE_WIN32)
|
2015-06-26 22:29:10 +00:00
|
|
|
elseif(UNIX)
|
|
|
|
add_definitions(-fPIC)
|
2015-11-16 17:03:28 +00:00
|
|
|
add_definitions(-DGLSLANG_OSINCLUDE_UNIX)
|
2015-06-26 22:29:10 +00:00
|
|
|
else(WIN32)
|
2016-04-03 00:17:13 +00:00
|
|
|
message("unknown platform")
|
2015-06-26 22:29:10 +00:00
|
|
|
endif(WIN32)
|
|
|
|
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
2016-07-18 16:11:05 +00:00
|
|
|
add_definitions(-Wall -Wmaybe-uninitialized -Wuninitialized -Wunused -Wunused-local-typedefs
|
|
|
|
-Wunused-parameter -Wunused-value -Wunused-variable -Wunused-but-set-parameter -Wunused-but-set-variable)
|
|
|
|
add_definitions(-Wno-reorder) # disable this from -Wall, since it happens all over.
|
2015-06-26 22:29:10 +00:00
|
|
|
add_definitions(-std=c++11)
|
|
|
|
elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
|
2016-07-18 16:11:05 +00:00
|
|
|
add_definitions(-Wall -Wuninitialized -Wunused -Wunused-local-typedefs
|
|
|
|
-Wunused-parameter -Wunused-value -Wunused-variable)
|
|
|
|
add_definitions(-Wno-reorder) # disable this from -Wall, since it happens all over.
|
2015-06-26 22:29:10 +00:00
|
|
|
add_definitions(-std=c++11)
|
|
|
|
endif()
|
|
|
|
|
2016-06-02 18:37:24 +00:00
|
|
|
function(glslang_set_link_args TARGET)
|
|
|
|
# For MinGW compiles, statically link against the GCC and C++ runtimes.
|
|
|
|
# This avoids the need to ship those runtimes as DLLs.
|
|
|
|
if(WIN32)
|
|
|
|
if(${CMAKE_CXX_COMPILER_ID} MATCHES "GNU")
|
|
|
|
set_target_properties(${TARGET} PROPERTIES
|
|
|
|
LINK_FLAGS "-static -static-libgcc -static-libstdc++")
|
|
|
|
endif()
|
|
|
|
endif(WIN32)
|
|
|
|
endfunction(glslang_set_link_args)
|
|
|
|
|
2016-03-04 21:22:34 +00:00
|
|
|
# We depend on these for later projects, so they should come first.
|
|
|
|
add_subdirectory(External)
|
|
|
|
|
2015-06-26 22:29:10 +00:00
|
|
|
add_subdirectory(glslang)
|
|
|
|
add_subdirectory(OGLCompilersDLL)
|
|
|
|
add_subdirectory(StandAlone)
|
|
|
|
add_subdirectory(SPIRV)
|
2016-03-13 03:11:22 +00:00
|
|
|
add_subdirectory(hlsl)
|
2016-03-04 21:22:34 +00:00
|
|
|
add_subdirectory(gtests)
|