[xqilla] Fix single config builds (#42447)

This commit is contained in:
Alexander Neumann 2024-12-03 01:23:18 +01:00 committed by GitHub
parent 02fc46bac0
commit d746769f0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 3 deletions

View File

@ -433,7 +433,9 @@ target_include_directories(xqilla PRIVATE "${XercesC_INCLUDE_DIRS}")
target_include_directories(xqilla PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include") target_include_directories(xqilla PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include")
if (BUILD_SHARED_LIBS) if (BUILD_SHARED_LIBS)
target_link_libraries(xqilla PUBLIC debug "${XercesC_LIBRARY_DEBUG}") if(XercesC_LIBRARY_DEBUG)
target_link_libraries(xqilla PUBLIC debug "${XercesC_LIBRARY_DEBUG}")
endif()
target_link_libraries(xqilla PUBLIC optimized "${XercesC_LIBRARY_RELEASE}") target_link_libraries(xqilla PUBLIC optimized "${XercesC_LIBRARY_RELEASE}")
endif() endif()

View File

@ -1,7 +1,7 @@
{ {
"name": "xqilla", "name": "xqilla",
"version": "2.3.4", "version": "2.3.4",
"port-version": 3, "port-version": 4,
"description": "XQuery and XPath 2 library", "description": "XQuery and XPath 2 library",
"homepage": "http://xqilla.sourceforge.net/HomePage", "homepage": "http://xqilla.sourceforge.net/HomePage",
"license": "Apache-2.0", "license": "Apache-2.0",

View File

@ -9862,7 +9862,7 @@
}, },
"xqilla": { "xqilla": {
"baseline": "2.3.4", "baseline": "2.3.4",
"port-version": 3 "port-version": 4
}, },
"xsimd": { "xsimd": {
"baseline": "13.0.0", "baseline": "13.0.0",

View File

@ -1,5 +1,10 @@
{ {
"versions": [ "versions": [
{
"git-tree": "a6cc05056f7fcc324cc81fedb003ccea5ad0e10d",
"version": "2.3.4",
"port-version": 4
},
{ {
"git-tree": "c5b161b57b6ff9c1c2131514506ac05ef1f76e77", "git-tree": "c5b161b57b6ff9c1c2131514506ac05ef1f76e77",
"version": "2.3.4", "version": "2.3.4",