Allowed for LIB_TYPE to be set to switch between static and shared libs for glslang, SPIRV, and HLSL

This commit is contained in:
Matthew Albrecht
2018-03-30 09:32:03 -05:00
parent fbdba369c9
commit 6c5f649ae8
4 changed files with 26 additions and 4 deletions

View File

@@ -17,10 +17,14 @@ set(HEADERS
hlslGrammar.h
hlslParseables.h)
add_library(HLSL STATIC ${SOURCES} ${HEADERS})
add_library(HLSL ${LIB_TYPE} ${SOURCES} ${HEADERS})
set_property(TARGET HLSL PROPERTY FOLDER hlsl)
set_property(TARGET HLSL PROPERTY POSITION_INDEPENDENT_CODE ON)
if(WIN32 AND BUILD_SHARED_LIBS)
set_target_properties(HLSL PROPERTIES PREFIX "")
endif()
if(WIN32)
source_group("Source" FILES ${SOURCES} ${HEADERS})
endif(WIN32)