mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-18 23:15:03 -05:00
19 lines
544 B
CMake
19 lines
544 B
CMake
|
project(pugixml)
|
||
|
|
||
|
cmake_minimum_required(VERSION 2.6)
|
||
|
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared instead of static library")
|
||
|
|
||
|
set(HEADERS ../src/pugixml.hpp ../src/pugiconfig.hpp)
|
||
|
set(SOURCES ${HEADERS} ../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.2 SOVERSION 1.2)
|
||
|
|
||
|
install(TARGETS pugixml LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)
|
||
|
install(FILES ${HEADERS} DESTINATION include)
|