git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@26137 e7fa87d3-cd2b-0410-9028-fcbf551c1848
15 lines
313 B
CMake
15 lines
313 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
include_directories(. ../../../OGLCompilersDLL)
|
|
|
|
set(SOURCES ossource.cpp osinclude.h)
|
|
|
|
add_library(OSDependent STATIC ${SOURCES})
|
|
|
|
if(WIN32)
|
|
source_group("Source" FILES ${SOURCES})
|
|
endif(WIN32)
|
|
|
|
install(TARGETS OSDependent
|
|
ARCHIVE DESTINATION lib)
|