mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-10 07:09:25 +08:00
e6fcef1b3e
git-svn-id: http://pugixml.googlecode.com/svn/trunk@885 99668b35-9821-0410-8761-19e4c4f06640
18 lines
558 B
CMake
18 lines
558 B
CMake
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)
|
|
|
|
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)
|
|
|
|
install(TARGETS pugixml LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)
|
|
install(DIRECTORY ../src/ DESTINATION include/pugixml FILES_MATCHING PATTERN *.hpp)
|