aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/samples/singleheaderlib/run_shared.sh
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-02-24 15:02:58 +0100
committerGitHub Enterprise <[email protected]>2026-02-24 15:02:58 +0100
commit2af00d3ff720969fb3b4d471778efcf8c7b3fad4 (patch)
tree9193eb3ff8cc9f3fb5e3342d94bde8c193a977ce /thirdparty/ryml/samples/singleheaderlib/run_shared.sh
parentadded zencore/filesystem.h include (diff)
parentVarious bug fixes (#778) (diff)
downloadzen-sb/spdlog-out.tar.xz
zen-sb/spdlog-out.zip
Merge branch 'main' into sb/spdlog-outsb/spdlog-out
Diffstat (limited to 'thirdparty/ryml/samples/singleheaderlib/run_shared.sh')
-rwxr-xr-xthirdparty/ryml/samples/singleheaderlib/run_shared.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/thirdparty/ryml/samples/singleheaderlib/run_shared.sh b/thirdparty/ryml/samples/singleheaderlib/run_shared.sh
deleted file mode 100755
index 372a36772..000000000
--- a/thirdparty/ryml/samples/singleheaderlib/run_shared.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-shared -DCMAKE_BUILD_TYPE=$cfg -DBUILD_SHARED_LIBS=ON
-# build and run the sample
-cmake --build ./build/$cfg-shared --config $cfg --target run