mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-10 20:30:06 +00:00
db0eaf9887
This adds solution folders that properly group gtest/glslang/hlsl. This also marks gtest options as advanced so they don't show up in cmake-gui by default.
12 lines
279 B
CMake
12 lines
279 B
CMake
set(SOURCES InitializeDll.cpp InitializeDll.h)
|
|
|
|
add_library(OGLCompiler STATIC ${SOURCES})
|
|
set_property(TARGET OGLCompiler PROPERTY FOLDER glslang)
|
|
|
|
if(WIN32)
|
|
source_group("Source" FILES ${SOURCES})
|
|
endif(WIN32)
|
|
|
|
install(TARGETS OGLCompiler
|
|
ARCHIVE DESTINATION lib)
|