Skip to content

Commit

Permalink
[xqilla] Fix single config builds (#42447)
Browse files Browse the repository at this point in the history
  • Loading branch information
Neumann-A authored Dec 3, 2024
1 parent 02fc46b commit d746769
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion ports/xqilla/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,9 @@ target_include_directories(xqilla PRIVATE "${XercesC_INCLUDE_DIRS}")
target_include_directories(xqilla PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include")

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}")
endif()

Expand Down
2 changes: 1 addition & 1 deletion ports/xqilla/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xqilla",
"version": "2.3.4",
"port-version": 3,
"port-version": 4,
"description": "XQuery and XPath 2 library",
"homepage": "http://xqilla.sourceforge.net/HomePage",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -9862,7 +9862,7 @@
},
"xqilla": {
"baseline": "2.3.4",
"port-version": 3
"port-version": 4
},
"xsimd": {
"baseline": "13.0.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/x-/xqilla.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "a6cc05056f7fcc324cc81fedb003ccea5ad0e10d",
"version": "2.3.4",
"port-version": 4
},
{
"git-tree": "c5b161b57b6ff9c1c2131514506ac05ef1f76e77",
"version": "2.3.4",
Expand Down

0 comments on commit d746769

Please sign in to comment.