
* This also moves bison generated files into the source tree, so that include of glslang_tab.cpp.h and includes from glslang_tab.cpp work the same way.
13 lines
259 B
CMake
13 lines
259 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
set(SOURCES InitializeDll.cpp InitializeDll.h)
|
|
|
|
add_library(OGLCompiler STATIC ${SOURCES})
|
|
|
|
if(WIN32)
|
|
source_group("Source" FILES ${SOURCES})
|
|
endif(WIN32)
|
|
|
|
install(TARGETS OGLCompiler
|
|
ARCHIVE DESTINATION lib)
|