aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/mstch/do-not-force-release.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/mstch/do-not-force-release.patch
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/mstch/do-not-force-release.patch')
-rw-r--r--vcpkg/ports/mstch/do-not-force-release.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/vcpkg/ports/mstch/do-not-force-release.patch b/vcpkg/ports/mstch/do-not-force-release.patch
new file mode 100644
index 0000000..63916f5
--- /dev/null
+++ b/vcpkg/ports/mstch/do-not-force-release.patch
@@ -0,0 +1,25 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8d8e0c7..4304ad7 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -5,17 +5,17 @@ option(WITH_UNIT_TESTS "enable building unit test executable" OFF)
+ option(WITH_BENCHMARK "enable building benchmark executable" OFF)
+
+ set(CMAKE_INCLUDE_CURRENT_DIR ON)
+-set(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON)
+-set(CMAKE_BUILD_TYPE Release)
+
+ set(mstch_VERSION 1.0.1)
+
+ if(NOT MSVC)
+- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wextra -O3")
++ set(CMAKE_CXX_STANDARD 11)
+ endif()
+
+ add_subdirectory(src)
+
++target_include_directories(mstch PUBLIC $<INSTALL_INTERFACE:include>)
++
+ if(WITH_UNIT_TESTS)
+ enable_testing()
+ add_subdirectory(vendor/headerize)