scripts: Added BUILD_SHARED_LIBS option to CMakeLists.txt for building pugixml as a shared library. Fixes issue 113.
git-svn-id: http://pugixml.googlecode.com/svn/trunk@812 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
parent
0b40577f14
commit
27c5c5e1cb
1 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,14 @@
|
|||
project(pugixml)
|
||||
|
||||
cmake_minimum_required(VERSION 2.6)
|
||||
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared instead of static library")
|
||||
|
||||
set(SOURCES ../src/pugixml.hpp ../src/pugiconfig.hpp ../src/pugixml.cpp)
|
||||
|
||||
add_library(pugixml STATIC ${SOURCES})
|
||||
if(BUILD_SHARED_LIBS)
|
||||
add_library(pugixml SHARED ${SOURCES})
|
||||
else()
|
||||
add_library(pugixml STATIC ${SOURCES})
|
||||
endif()
|
||||
|
||||
set_target_properties(pugixml PROPERTIES VERSION 1.0 SOVERSION 1.0)
|
||||
|
|
Loading…
Add table
Reference in a new issue