2020-11-16 14:47:43 +08:00
|
|
|
|
|
|
|
set(lib_name pugixml)
|
|
|
|
set(target_name ${lib_name})
|
|
|
|
|
|
|
|
project(${lib_name})
|
|
|
|
|
2023-03-11 22:10:18 +08:00
|
|
|
include(AXPlatform)
|
2020-11-16 14:47:43 +08:00
|
|
|
|
|
|
|
set(${target_name}_src
|
|
|
|
pugixml.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
if(WINDOWS)
|
|
|
|
add_library(${target_name} ${${target_name}_src})
|
|
|
|
if(BUILD_SHARED_LIBS)
|
|
|
|
target_compile_definitions(${target_name} PRIVATE $<$<CXX_COMPILER_ID:MSVC>:PUGIXML_API=__declspec\(dllexport\)>)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
add_library(${target_name} STATIC
|
|
|
|
${${target_name}_src}
|
|
|
|
)
|
|
|
|
target_include_directories(${target_name} PRIVATE .)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set_target_properties(${target_name} PROPERTIES
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
)
|
2021-05-13 02:42:12 +08:00
|
|
|
|
|
|
|
if(BUILD_SHARED_LIBS AND MSVC)
|
|
|
|
set_target_properties(${target_name} PROPERTIES
|
|
|
|
INTERFACE_COMPILE_DEFINITIONS PUGIXML_API=__declspec\(dllimport\)
|
|
|
|
)
|
|
|
|
endif()
|