
Stop forcing CMAKE_INSTALL_PREFIX="install". If the user manually set CMAKE_INSTALL_PREFIX, then trust that he knows what he's doing. This patch does NOT change the project's default value ("install") of CMAKE_INSTALL_PREFIX. Change-Id: I81b46dd1986427b498fe6316bed03f01689987d4
26 lines
596 B
CMake
26 lines
596 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
set(CMAKE_INSTALL_PREFIX "install" CACHE STRING "prefix")
|
|
|
|
project(glslang)
|
|
|
|
if(WIN32)
|
|
set(CMAKE_GENERATOR_TOOLSET "v110" CACHE STRING "Platform Toolset" FORCE)
|
|
include(ChooseMSVCCRT.cmake)
|
|
elseif(UNIX)
|
|
add_definitions(-fPIC)
|
|
else(WIN32)
|
|
message("unkown platform")
|
|
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()
|
|
|
|
add_subdirectory(glslang)
|
|
add_subdirectory(OGLCompilersDLL)
|
|
add_subdirectory(StandAlone)
|
|
add_subdirectory(SPIRV)
|