aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/squirrel/fix_optionally_build_sq.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/squirrel/fix_optionally_build_sq.patch
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/squirrel/fix_optionally_build_sq.patch')
-rw-r--r--vcpkg/ports/squirrel/fix_optionally_build_sq.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/vcpkg/ports/squirrel/fix_optionally_build_sq.patch b/vcpkg/ports/squirrel/fix_optionally_build_sq.patch
new file mode 100644
index 0000000..9566ec8
--- /dev/null
+++ b/vcpkg/ports/squirrel/fix_optionally_build_sq.patch
@@ -0,0 +1,41 @@
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index dc35b6f..628c649 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -3,6 +3,7 @@ project(squirrel VERSION 3.1 LANGUAGES C CXX)
+
+ option(DISABLE_STATIC "Avoid building/installing static libraries.")
+ option(LONG_OUTPUT_NAMES "Use longer names for binaries and libraries: squirrel3 (not sq).")
++option(BUILD_SQ "Build sq interpreter.")
+
+ if (NOT CMAKE_BUILD_TYPE)
+ set(CMAKE_BUILD_TYPE "Release")
+@@ -35,15 +36,24 @@ endif()
+
+ add_subdirectory(squirrel)
+ add_subdirectory(sqstdlib)
+-add_subdirectory(sq)
++
++if(BUILD_SQ)
++ add_subdirectory(sq)
++endif()
+
+ if(CMAKE_SIZEOF_VOID_P EQUAL 8)
+ set(tgts)
+ if(NOT DISABLE_DYNAMIC)
+- list(APPEND tgts squirrel sqstdlib sq)
++ list(APPEND tgts squirrel sqstdlib)
++ if(BUILD_SQ)
++ list(APPEND tgts sq)
++ endif()
+ endif()
+ if(NOT DISABLE_STATIC)
+- list(APPEND tgts squirrel_static sqstdlib_static sq_static)
++ list(APPEND tgts squirrel_static sqstdlib_static)
++ if(BUILD_SQ)
++ list(APPEND tgts sq_static)
++ endif()
+ endif()
+ foreach(t ${tgts})
+ target_compile_definitions(${t} PUBLIC -D_SQ64)