45 lines
999 B
CMake
45 lines
999 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
add_library(glslang-default-resource-limits
|
|
${CMAKE_CURRENT_SOURCE_DIR}/DefaultResourceLimits.cpp
|
|
)
|
|
target_include_directories(glslang-default-resource-limits
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
|
|
PUBLIC ${PROJECT_SOURCE_DIR}
|
|
)
|
|
|
|
set(SOURCES StandAlone.cpp)
|
|
set(REMAPPER_SOURCES spirv-remap.cpp)
|
|
|
|
add_executable(glslangValidator ${SOURCES})
|
|
add_executable(spirv-remap ${REMAPPER_SOURCES})
|
|
|
|
set(LIBRARIES
|
|
glslang
|
|
OGLCompiler
|
|
OSDependent
|
|
HLSL
|
|
SPIRV
|
|
glslang-default-resource-limits)
|
|
|
|
if(WIN32)
|
|
set(LIBRARIES ${LIBRARIES} psapi)
|
|
elseif(UNIX)
|
|
if(NOT ANDROID)
|
|
set(LIBRARIES ${LIBRARIES} pthread)
|
|
endif()
|
|
endif(WIN32)
|
|
|
|
target_link_libraries(glslangValidator ${LIBRARIES})
|
|
target_link_libraries(spirv-remap ${LIBRARIES})
|
|
|
|
if(WIN32)
|
|
source_group("Source" FILES ${SOURCES})
|
|
endif(WIN32)
|
|
|
|
install(TARGETS glslangValidator
|
|
RUNTIME DESTINATION bin)
|
|
|
|
install(TARGETS spirv-remap
|
|
RUNTIME DESTINATION bin)
|