glslang-zig/glslang/OSDependent/Windows/CMakeLists.txt
2015-12-03 17:46:03 -07:00

12 lines
253 B
CMake

cmake_minimum_required(VERSION 2.8)
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)