2010-07-19 13:57:32 +04:00
|
|
|
project(pugixml)
|
|
|
|
|
|
2011-07-20 08:21:49 +04:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
|
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared instead of static library")
|
|
|
|
|
|
2010-09-20 23:15:56 +04:00
|
|
|
set(SOURCES ../src/pugixml.hpp ../src/pugiconfig.hpp ../src/pugixml.cpp)
|
2010-07-19 13:57:32 +04:00
|
|
|
|
2011-07-20 08:21:49 +04:00
|
|
|
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)
|