mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-10 04:20:06 +00:00
3ce1058dbe
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@25793 e7fa87d3-cd2b-0410-9028-fcbf551c1848
29 lines
623 B
CMake
29 lines
623 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
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)
|
|
|
|
set(LIBRARIES
|
|
glslang
|
|
GenericCodeGen
|
|
OSDependent
|
|
Preprocessor
|
|
OGLCompiler)
|
|
|
|
if(UNIX)
|
|
set(LIBRARIES ${LIBRARIES} pthread)
|
|
endif(UNIX)
|
|
|
|
target_link_libraries(glslangValidator ${LIBRARIES})
|
|
|
|
install(TARGETS glslangValidator
|
|
RUNTIME DESTINATION bin)
|