mirror of
https://github.com/libretro/glslang.git
synced 2024-12-02 21:16:49 +00:00
0ae28ea647
Add stubbed HLSL derivation. GLSL derivation is still called TBuiltIns, for historical compatibility.
27 lines
527 B
CMake
Executable File
27 lines
527 B
CMake
Executable File
set(SOURCES
|
|
hlslParseHelper.cpp
|
|
hlslScanContext.cpp
|
|
hlslOpMap.cpp
|
|
hlslTokenStream.cpp
|
|
hlslGrammar.cpp
|
|
hlslParseables.cpp)
|
|
|
|
set(HEADERS
|
|
hlslParseHelper.h
|
|
hlslTokens.h
|
|
hlslScanContext.h
|
|
hlslOpMap.h
|
|
hlslTokenStream.h
|
|
hlslGrammar.h
|
|
hlslParseables.h)
|
|
|
|
add_library(HLSL STATIC ${SOURCES} ${HEADERS})
|
|
set_property(TARGET HLSL PROPERTY FOLDER hlsl)
|
|
|
|
if(WIN32)
|
|
source_group("Source" FILES ${SOURCES} ${HEADERS})
|
|
endif(WIN32)
|
|
|
|
install(TARGETS HLSL
|
|
ARCHIVE DESTINATION lib)
|