Add CMake support for Visual Studio and installation, with an expected "install" for CMAKE_INSTALL_PREFIX, and updated test scripts to consume the CMake installation.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@25791 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
6b57784690
commit
d18e2d8adc
9 changed files with 134 additions and 50 deletions
|
|
@ -1,13 +1,25 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
include_directories(. ../glslang/OSDependent/Linux)
|
||||
include_directories(.)
|
||||
if(WIN32)
|
||||
include_directories(${include_directories} ../glslang/OSDependent/Windows)
|
||||
elseif(UNIX)
|
||||
include_directories(${include_directories} ../glslang/OSDependent/Linux)
|
||||
else(WIN32)
|
||||
message("unkown platform")
|
||||
endif(WIN32)
|
||||
|
||||
add_executable(glslangValidator StandAlone.cpp)
|
||||
|
||||
target_link_libraries(glslangValidator
|
||||
glslang
|
||||
GenericCodeGen
|
||||
OSDependent
|
||||
Preprocessor
|
||||
OGLCompiler
|
||||
pthread)
|
||||
OGLCompiler)
|
||||
if(UNIX)
|
||||
target_link_libraries(${target_link_libraries} pthread)
|
||||
endif(UNIX)
|
||||
|
||||
install(TARGETS glslangValidator
|
||||
RUNTIME DESTINATION bin)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue