Skip to content
Snippets Groups Projects
Commit 1c82e0cf authored by arseny.kapoulkine@gmail.com's avatar arseny.kapoulkine@gmail.com
Browse files

scripts: Allow to customize library install location for CMake

git-svn-id: http://pugixml.googlecode.com/svn/trunk@918 99668b35-9821-0410-8761-19e4c4f06640
parent 215ecbcf
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,10 @@ project(pugixml) ...@@ -3,6 +3,10 @@ project(pugixml)
cmake_minimum_required(VERSION 2.6) cmake_minimum_required(VERSION 2.6)
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared instead of static library") set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared instead of static library")
if(NOT DEFINED CMAKE_INSTALL_LIBDIR)
SET(CMAKE_INSTALL_LIBDIR lib CACHE PATH "Output directory for libraries")
endif()
set(HEADERS ../src/pugixml.hpp ../src/pugiconfig.hpp) set(HEADERS ../src/pugixml.hpp ../src/pugiconfig.hpp)
set(SOURCES ${HEADERS} ../src/pugixml.cpp) set(SOURCES ${HEADERS} ../src/pugixml.cpp)
...@@ -14,5 +18,5 @@ endif() ...@@ -14,5 +18,5 @@ endif()
set_target_properties(pugixml PROPERTIES VERSION 1.2 SOVERSION 1.2) set_target_properties(pugixml PROPERTIES VERSION 1.2 SOVERSION 1.2)
install(TARGETS pugixml LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) install(TARGETS pugixml LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
install(FILES ${HEADERS} DESTINATION include) install(FILES ${HEADERS} DESTINATION include)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment