mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 18:59:01 +08:00
15c59be137
* [xmlsec] Add a new port (#7168) * [xmlsec] Fix missing iconv on x64-osx
153 lines
5.1 KiB
CMake
153 lines
5.1 KiB
CMake
cmake_minimum_required (VERSION 3.8)
|
|
project (xmlsec C)
|
|
|
|
option(INSTALL_HEADERS_TOOLS "Install public header files and tools" ON)
|
|
|
|
set(CMAKE_SHARED_LIBRARY_PREFIX)
|
|
set(CMAKE_STATIC_LIBRARY_PREFIX)
|
|
|
|
find_package(LibXml2 REQUIRED)
|
|
find_package(OpenSSL REQUIRED)
|
|
find_package(unofficial-iconv REQUIRED)
|
|
|
|
FILE(GLOB SOURCESXMLSEC
|
|
src/*.c
|
|
)
|
|
|
|
FILE(GLOB SOURCESXMLSECOPENSSL
|
|
src/openssl/*.c
|
|
src/strings.c
|
|
)
|
|
|
|
# Generate xmlexports with fixed definition of XMLSEC_STATIC
|
|
file(READ include/xmlsec/exports.h EXPORTS_H)
|
|
if(BUILD_SHARED_LIBS)
|
|
string(REPLACE "!defined(XMLSEC_STATIC)" "1" EXPORTS_H "${EXPORTS_H}")
|
|
else()
|
|
string(REPLACE "!defined(XMLSEC_STATIC)" "0" EXPORTS_H "${EXPORTS_H}")
|
|
endif()
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/exports.h "${EXPORTS_H}")
|
|
|
|
message(STATUS "Reading version info from configure.ac")
|
|
|
|
file(STRINGS "configure.ac"
|
|
_xmlsec_version_defines REGEX "XMLSEC_VERSION_(MAJOR|MINOR|SUBMINOR)=([0-9]+)$")
|
|
|
|
foreach(ver ${_xmlsec_version_defines})
|
|
if(ver MATCHES "XMLSEC_VERSION_(MAJOR|MINOR|SUBMINOR)=([0-9]+)$")
|
|
set(XMLSEC_VERSION_${CMAKE_MATCH_1} "${CMAKE_MATCH_2}" CACHE INTERNAL "")
|
|
endif()
|
|
endforeach()
|
|
|
|
set(XMLSEC_VERSION ${XMLSEC_VERSION_MAJOR}.${XMLSEC_VERSION_MINOR}.${XMLSEC_VERSION_SUBMINOR})
|
|
math(EXPR XMLSEC_VERSION_INFO_NUMBER
|
|
"${XMLSEC_VERSION_MAJOR} + ${XMLSEC_VERSION_MINOR}")
|
|
set(XMLSEC_VERSION_INFO ${XMLSEC_VERSION_INFO_NUMBER}:${XMLSEC_VERSION_SUBMINOR}:${XMLSEC_VERSION_MINOR})
|
|
|
|
message(STATUS "XMLSEC_VERSION: ${XMLSEC_VERSION}")
|
|
message(STATUS "XMLSEC_VERSION_MAJOR: ${XMLSEC_VERSION_MAJOR}")
|
|
message(STATUS "XMLSEC_VERSION_MINOR: ${XMLSEC_VERSION_MINOR}")
|
|
message(STATUS "XMLSEC_VERSION_SUBMINOR: ${XMLSEC_VERSION_SUBMINOR}")
|
|
message(STATUS "XMLSEC_VERSION_INFO: ${XMLSEC_VERSION_INFO}")
|
|
|
|
message(STATUS "Generating version.h")
|
|
|
|
configure_file(include/xmlsec/version.h.in include/xmlsec/version.h)
|
|
|
|
if(MSVC)
|
|
add_compile_options(/wd4130 /wd4127 /wd4152)
|
|
endif()
|
|
|
|
add_library(libxmlsec ${SOURCESXMLSEC})
|
|
add_library(libxmlsec-openssl ${SOURCESXMLSECOPENSSL})
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}/include include ${LIBXML2_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(libxmlsec PRIVATE
|
|
${LIBXML2_LIBRARIES} OpenSSL::SSL
|
|
)
|
|
target_link_libraries(libxmlsec-openssl PRIVATE
|
|
${LIBXML2_LIBRARIES} OpenSSL::SSL libxmlsec
|
|
)
|
|
|
|
add_compile_definitions(inline=__inline)
|
|
add_compile_definitions(PACKAGE="xmlsec")
|
|
add_compile_definitions(XMLSEC_MSCRYPTO_NT4=1)
|
|
add_compile_definitions(HAVE_STDIO_H)
|
|
add_compile_definitions(HAVE_STDLIB_H)
|
|
add_compile_definitions(HAVE_STRING_H)
|
|
add_compile_definitions(HAVE_CTYPE_H)
|
|
add_compile_definitions(HAVE_MALLOC_H)
|
|
add_compile_definitions(HAVE_MEMORY_H)
|
|
add_compile_definitions(XMLSEC_NO_XSLT=1)
|
|
add_compile_definitions(XMLSEC_DEFAULT_CRYPTO="openssl")
|
|
add_compile_definitions(XMLSEC_NO_GOST)
|
|
add_compile_definitions(XMLSEC_NO_GOST2012)
|
|
add_compile_definitions(XMLSEC_NO_SIZE_T)
|
|
add_compile_definitions(UNICODE)
|
|
add_compile_definitions(_UNICODE)
|
|
add_compile_definitions(_MBCS)
|
|
add_compile_definitions(_REENTRANT)
|
|
|
|
target_compile_definitions(libxmlsec-openssl PRIVATE
|
|
-DXMLSEC_CRYPTO_OPENSSL
|
|
)
|
|
|
|
set_target_properties(libxmlsec PROPERTIES VERSION ${XMLSEC_VERSION_MAJOR}.${XMLSEC_VERSION_MINOR})
|
|
set_target_properties(libxmlsec-openssl PROPERTIES VERSION ${XMLSEC_VERSION_MAJOR}.${XMLSEC_VERSION_MINOR})
|
|
|
|
if(NOT BUILD_SHARED_LIBS)
|
|
target_compile_definitions(libxmlsec PRIVATE -DLIBXML_STATIC -DLIBXSLT_STATIC -DXMLSEC_STATIC -DXMLSEC_NO_CRYPTO_DYNAMIC_LOADING)
|
|
target_compile_definitions(libxmlsec-openssl PRIVATE -DLIBXML_STATIC -DLIBXSLT_STATIC -DXMLSEC_STATIC -DXMLSEC_NO_CRYPTO_DYNAMIC_LOADING)
|
|
else()
|
|
target_compile_definitions(libxmlsec PRIVATE -DXMLSEC_DL_WIN32)
|
|
target_compile_definitions(libxmlsec-openssl PRIVATE -DXMLSEC_DL_WIN32)
|
|
endif()
|
|
|
|
install(TARGETS libxmlsec libxmlsec-openssl
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|
|
|
|
if(INSTALL_HEADERS_TOOLS)
|
|
file(GLOB PUBLIC_HEADERS
|
|
include/xmlsec/*.h
|
|
include/xmlsec/openssl/*.h)
|
|
list(FILTER PUBLIC_HEADERS EXCLUDE REGEX "exports\\.h$")
|
|
|
|
foreach(file IN LISTS PUBLIC_HEADERS)
|
|
get_filename_component(dir ${file} DIRECTORY)
|
|
file(RELATIVE_PATH rel_dir ${CMAKE_SOURCE_DIR}/xmlsec/${LIB} ${dir})
|
|
install(FILES ${file} DESTINATION "include/${rel_dir}")
|
|
endforeach()
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/include/xmlsec/version.h DESTINATION "include/xmlsec")
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/exports.h DESTINATION "include/xmlsec")
|
|
|
|
# xmlsec application
|
|
add_executable(xmlsec
|
|
apps/crypto.c
|
|
apps/cmdline.c
|
|
apps/xmlsec.c)
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows" OR CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
target_link_libraries(xmlsec PRIVATE crypt32.lib)
|
|
endif()
|
|
|
|
target_link_libraries(xmlsec PRIVATE
|
|
${LIBXML2_LIBRARIES} OpenSSL::SSL libxmlsec libxmlsec-openssl unofficial::iconv::libiconv
|
|
)
|
|
|
|
target_compile_definitions(xmlsec PRIVATE
|
|
-DXMLSEC_CRYPTO_OPENSSL
|
|
)
|
|
|
|
if(BUILD_SHARED_LIBS)
|
|
target_compile_definitions(xmlsec PRIVATE -DXMLSEC_CRYPTO_DYNAMIC_LOADING)
|
|
else()
|
|
target_compile_definitions(xmlsec PRIVATE -DLIBXML_STATIC -DLIBXSLT_STATIC -DXMLSEC_STATIC)
|
|
endif()
|
|
install(TARGETS xmlsec DESTINATION tools/xmlsec)
|
|
endif()
|