aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/samples/fetch_content
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/fetch_content
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/fetch_content')
-rwxr-xr-xthirdparty/ryml/samples/fetch_content/run.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/thirdparty/ryml/samples/fetch_content/run.sh b/thirdparty/ryml/samples/fetch_content/run.sh
deleted file mode 100755
index cb1d7a008..000000000
--- a/thirdparty/ryml/samples/fetch_content/run.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash -x
-
-# take the build type from the command line, or default to release
-cfg=${1:-Release}
-# force cmake's FetchContent to choose a specific branch, or default to nothing
-branch=${2:-}
-# make sure to run from where this file is
-cd $(dirname $0)
-# configure the sample
-cmake -S . -B ./build/$cfg -DCMAKE_BUILD_TYPE=$cfg -DRYML_BRANCH_NAME="$branch"
-# build and run the sample
-cmake --build ./build/$cfg --config $cfg --target run