Skip to content

Commit

Permalink
[liborigin] fix x64-linux-dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
MehdiChinoune committed May 11, 2024
1 parent a1212c9 commit dd76e6f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion ports/liborigin/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
else()
file(GLOB EXES "${CURRENT_PACKAGES_DIR}/bin/*.exe" "${CURRENT_PACKAGES_DIR}/debug/bin/*.exe")
file(REMOVE_RECURSE ${EXES})
if(EXES)
file(REMOVE_RECURSE ${EXES})
endif()
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
Expand Down
2 changes: 1 addition & 1 deletion ports/liborigin/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "liborigin",
"version": "3.0.2",
"port-version": 1,
"port-version": 2,
"description": "A library for reading OriginLab OPJ project files.",
"homepage": "https://sourceforge.net/projects/liborigin/",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -4774,7 +4774,7 @@
},
"liborigin": {
"baseline": "3.0.2",
"port-version": 1
"port-version": 2
},
"libosdp": {
"baseline": "3.0.5",
Expand Down
5 changes: 5 additions & 0 deletions versions/l-/liborigin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "1d834ccdd0091398ed528cef9649567447b6dc63",
"version": "3.0.2",
"port-version": 2
},
{
"git-tree": "1af8619df06f9a9519e035cd59b7bfe89f25b59d",
"version": "3.0.2",
Expand Down

0 comments on commit dd76e6f

Please sign in to comment.