Add CMake support for Visual Studio and installation, with an expected "install" for CMAKE_INSTALL_PREFIX, and updated test scripts to consume the CMake installation.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@25791 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
@@ -1,14 +1,20 @@
|
||||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
include_directories(. ..)
|
||||
set(SOURCES
|
||||
Pp.cpp
|
||||
PpAtom.cpp
|
||||
PpContext.cpp
|
||||
PpMemory.cpp
|
||||
PpScanner.cpp
|
||||
PpSymbols.cpp
|
||||
PpTokens.cpp)
|
||||
|
||||
add_library(Preprocessor STATIC ${SOURCES})
|
||||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
include_directories(. ..)
|
||||
set(SOURCES
|
||||
Pp.cpp
|
||||
PpAtom.cpp
|
||||
PpContext.cpp
|
||||
PpMemory.cpp
|
||||
PpScanner.cpp
|
||||
PpSymbols.cpp
|
||||
PpTokens.cpp)
|
||||
|
||||
set(HEADERS
|
||||
PpContext.h
|
||||
PpTokens.h)
|
||||
|
||||
add_library(Preprocessor STATIC ${SOURCES} ${HEADERS})
|
||||
|
||||
install(TARGETS Preprocessor
|
||||
ARCHIVE DESTINATION lib)
|
||||
|
||||
Reference in New Issue
Block a user