aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/samples/singleheader/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/ryml/samples/singleheader/run.sh')
-rwxr-xr-xthirdparty/ryml/samples/singleheader/run.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/thirdparty/ryml/samples/singleheader/run.sh b/thirdparty/ryml/samples/singleheader/run.sh
deleted file mode 100755
index fc2f7d858..000000000
--- a/thirdparty/ryml/samples/singleheader/run.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 -DCMAKE_BUILD_TYPE=$cfg
-# build and run the sample
-cmake --build ./build/$cfg --config $cfg --target run