scripts: Add an option for building tests with CMake
This commit is contained in:
parent
9539c488c2
commit
05032b4c06
@ -3,6 +3,7 @@ project(pugixml)
|
|||||||
cmake_minimum_required(VERSION 2.6)
|
cmake_minimum_required(VERSION 2.6)
|
||||||
|
|
||||||
option(BUILD_SHARED_LIBS "Build shared instead of static library" OFF)
|
option(BUILD_SHARED_LIBS "Build shared instead of static library" OFF)
|
||||||
|
option(BUILD_TESTS "Build tests" OFF)
|
||||||
set(BUILD_DEFINES "" CACHE STRING "Build defines")
|
set(BUILD_DEFINES "" CACHE STRING "Build defines")
|
||||||
|
|
||||||
# Pre-defines standard install locations on *nix systems.
|
# Pre-defines standard install locations on *nix systems.
|
||||||
@ -13,7 +14,9 @@ set(HEADERS ../src/pugixml.hpp ../src/pugiconfig.hpp)
|
|||||||
set(SOURCES ${HEADERS} ../src/pugixml.cpp)
|
set(SOURCES ${HEADERS} ../src/pugixml.cpp)
|
||||||
|
|
||||||
if(DEFINED BUILD_DEFINES)
|
if(DEFINED BUILD_DEFINES)
|
||||||
add_definitions(${BUILD_DEFINES})
|
foreach(DEFINE ${BUILD_DEFINES})
|
||||||
|
add_definitions("-D" ${DEFINE})
|
||||||
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(BUILD_SHARED_LIBS)
|
if(BUILD_SHARED_LIBS)
|
||||||
@ -32,3 +35,13 @@ install(TARGETS pugixml EXPORT pugixml-config
|
|||||||
|
|
||||||
install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||||
install(EXPORT pugixml-config DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pugixml)
|
install(EXPORT pugixml-config DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pugixml)
|
||||||
|
|
||||||
|
if(BUILD_TESTS)
|
||||||
|
file(GLOB TEST_SOURCES ../tests/*.cpp)
|
||||||
|
file(GLOB FUZZ_SOURCES ../tests/fuzz_*.cpp)
|
||||||
|
list(REMOVE_ITEM TEST_SOURCES ${FUZZ_SOURCES})
|
||||||
|
|
||||||
|
add_executable(check ${TEST_SOURCES})
|
||||||
|
target_link_libraries(check pugixml)
|
||||||
|
add_custom_command(TARGET check POST_BUILD COMMAND check WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/..)
|
||||||
|
endif()
|
||||||
Loading…
Reference in New Issue
Block a user