2016-05-04 17:06:15 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
2015-06-26 22:29:10 +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)
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
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)
|
|
|
|
add_definitions(-std=c++11)
|
|
|
|
elseif(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
|
|
|
|
add_definitions(-std=c++11)
|
|
|
|
endif()
|
|
|
|
|
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)
|