aboutsummaryrefslogtreecommitdiff
path: root/ports/tmx/fix-build-error.patch
diff options
context:
space:
mode:
authorJustin Arruda <paradoxum@gmail.com>2021-01-08 14:57:48 -0500
committerGitHub <noreply@github.com>2021-01-08 11:57:48 -0800
commit45e0eb4e8a906a3f462e2610bf1d55b0107a3ad3 (patch)
tree9d3bb211b17177db6f4d8f5b8cd39fe3ca33a3d3 /ports/tmx/fix-build-error.patch
parentaa83f4bd2a0ba162fcc104afe3c6afbb9b0812e7 (diff)
downloadvcpkg-45e0eb4e8a906a3f462e2610bf1d55b0107a3ad3.tar.gz
vcpkg-45e0eb4e8a906a3f462e2610bf1d55b0107a3ad3.zip
[tmx] Update tmx port to 1.1.0 (#15421)
* [tmx] Update tmx port to 1.1.0 * Update control file version and copyright file. * Remove port-version field from CONTROL.
Diffstat (limited to 'ports/tmx/fix-build-error.patch')
-rw-r--r--ports/tmx/fix-build-error.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/ports/tmx/fix-build-error.patch b/ports/tmx/fix-build-error.patch
deleted file mode 100644
index 654fb4dba..000000000
--- a/ports/tmx/fix-build-error.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index b29edce..48d0553 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -66,8 +66,9 @@ write_basic_package_version_file("tmxConfigVersion.cmake" COMPATIBILITY SameMajo
- # Build
- #-----------#
-
--list(APPEND targets tmx)
-+set(targets tmx)
-
-+if (NOT BUILD_SHARED_LIBS)
- add_library(tmx STATIC ${SOURCES})
- set_target_properties(tmx PROPERTIES VERSION ${BUILD_VERSION})
-
-@@ -75,8 +76,8 @@ set_property(TARGET tmx
- APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
- $<INSTALL_INTERFACE:include>)
-
--if(BUILD_SHARED_LIBS)
-- list(APPEND targets tmx_shared)
-+else()
-+ set(targets tmx_shared)
-
- add_library(tmx_shared SHARED ${SOURCES})
- target_link_libraries(tmx_shared PRIVATE ${libs})