CMake: Collapse into a single library all the libraries under the glslang directory, and represent the proper hierarchy in MSVS. There are still a total of 3 libraries to link against: glslang, OGLCompiler, and OSDependent.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@26137 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
@@ -1,30 +1,34 @@
|
||||
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(WIN32)
|
||||
set(LIBRARIES ${LIBRARIES} psapi)
|
||||
elseif(UNIX)
|
||||
set(LIBRARIES ${LIBRARIES} pthread)
|
||||
endif(WIN32)
|
||||
|
||||
target_link_libraries(glslangValidator ${LIBRARIES})
|
||||
|
||||
install(TARGETS glslangValidator
|
||||
RUNTIME DESTINATION bin)
|
||||
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)
|
||||
|
||||
set(SOURCES StandAlone.cpp)
|
||||
|
||||
add_executable(glslangValidator ${SOURCES})
|
||||
|
||||
set(LIBRARIES
|
||||
glslang
|
||||
OGLCompiler
|
||||
OSDependent)
|
||||
|
||||
if(WIN32)
|
||||
set(LIBRARIES ${LIBRARIES} psapi)
|
||||
elseif(UNIX)
|
||||
set(LIBRARIES ${LIBRARIES} pthread)
|
||||
endif(WIN32)
|
||||
|
||||
target_link_libraries(glslangValidator ${LIBRARIES})
|
||||
|
||||
if(WIN32)
|
||||
source_group("Source" FILES ${SOURCES})
|
||||
endif(WIN32)
|
||||
|
||||
install(TARGETS glslangValidator
|
||||
RUNTIME DESTINATION bin)
|
||||
|
||||
Reference in New Issue
Block a user