aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/draco/disable-symlinks.patch
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/draco/disable-symlinks.patch
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/draco/disable-symlinks.patch')
-rw-r--r--vcpkg/ports/draco/disable-symlinks.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/vcpkg/ports/draco/disable-symlinks.patch b/vcpkg/ports/draco/disable-symlinks.patch
new file mode 100644
index 0000000..df39449
--- /dev/null
+++ b/vcpkg/ports/draco/disable-symlinks.patch
@@ -0,0 +1,29 @@
+diff --git a/cmake/draco_targets.cmake b/cmake/draco_targets.cmake
+index c8c79f5..1cec5b8 100644
+--- a/cmake/draco_targets.cmake
++++ b/cmake/draco_targets.cmake
+@@ -111,9 +111,6 @@ macro(draco_add_executable)
+
+ target_compile_features(${exe_NAME} PUBLIC cxx_std_11)
+
+- if(NOT EMSCRIPTEN)
+- set_target_properties(${exe_NAME} PROPERTIES VERSION ${DRACO_VERSION})
+- endif()
+
+ if(exe_OUTPUT_NAME)
+ set_target_properties(${exe_NAME} PROPERTIES OUTPUT_NAME ${exe_OUTPUT_NAME})
+@@ -364,14 +361,6 @@ macro(draco_add_library)
+ set_target_properties(${lib_NAME} PROPERTIES PREFIX "")
+ endif()
+
+- if(NOT EMSCRIPTEN)
+- # VERSION and SOVERSION as necessary
+- if((lib_TYPE STREQUAL BUNDLE OR lib_TYPE STREQUAL SHARED) AND NOT MSVC)
+- set_target_properties(
+- ${lib_NAME} PROPERTIES VERSION ${DRACO_SOVERSION}
+- SOVERSION ${DRACO_SOVERSION_MAJOR})
+- endif()
+- endif()
+
+ if(BUILD_SHARED_LIBS AND (MSVC OR WIN32))
+ if(lib_TYPE STREQUAL SHARED)