aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/samples/singleheaderlib/run_static.sh
diff options
context:
space:
mode:
authorLiam Mitchell <[email protected]>2026-03-09 18:40:40 -0700
committerLiam Mitchell <[email protected]>2026-03-09 18:40:40 -0700
commit97aa4e5c48305647a5d8f09da5f24bc1ce5540f3 (patch)
tree11062e72f4342aeb2f16ac19d6af20ac0e4acd78 /thirdparty/ryml/samples/singleheaderlib/run_static.sh
parentMerge branch 'main' into lm/oidctoken-exe-path (diff)
parentupdated chunk–block analyser (#818) (diff)
downloadzen-97aa4e5c48305647a5d8f09da5f24bc1ce5540f3.tar.xz
zen-97aa4e5c48305647a5d8f09da5f24bc1ce5540f3.zip
Merge branch 'main' into lm/oidctoken-exe-path
Diffstat (limited to 'thirdparty/ryml/samples/singleheaderlib/run_static.sh')
-rwxr-xr-xthirdparty/ryml/samples/singleheaderlib/run_static.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/thirdparty/ryml/samples/singleheaderlib/run_static.sh b/thirdparty/ryml/samples/singleheaderlib/run_static.sh
deleted file mode 100755
index d0e570215..000000000
--- a/thirdparty/ryml/samples/singleheaderlib/run_static.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash -x
-
-# take the build type from the command line, or default to release
-cfg=${1:-Release}
-# make sure to run from where this file is
-cd $(dirname $0)
-# configure the sample
-cmake -S . -B ./build/$cfg-static -DCMAKE_BUILD_TYPE=$cfg -DBUILD_SHARED_LIBS=OFF
-# build and run the sample
-cmake --build ./build/$cfg-static --config $cfg --target run