Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jp7677/dxvk-nvapi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Peters <jp7677@gmail.com>2022-06-26 20:00:45 +0300
committerJens Peters <jp7677@gmail.com>2022-06-30 21:10:20 +0300
commitbe4260f2e4316f58fddaff0edac2acdb7fb481a9 (patch)
treea646ed74c3e6bbb97439b19c1a0dc2ab2b92cfa3
parente1921bd9236d0be5d0510d25e739d9843c0d5b31 (diff)
build: Remove script
It is easier to follow the instructions from https://blog.jetbrains.com/clion/2021/01/working-with-meson-in-clion-using-compilation-db/
-rwxr-xr-xcreate-compilation-database.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/create-compilation-database.sh b/create-compilation-database.sh
deleted file mode 100755
index 3cb707c..0000000
--- a/create-compilation-database.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-set -e
-
-shopt -s extglob
-
-DB="compile_commands.json"
-SRC_DIR=$(dirname "$(readlink -f "$0")")
-BUILD_DIR="$SRC_DIR/db"
-
-if [ -e "$BUILD_DIR" ]; then
- echo "Build directory $BUILD_DIR already exists"
- exit 1
-fi
-
-if [ -e "$DB" ]; then
- echo "Clang Compilation Database ($DB) already exists"
- exit 1
-fi
-
-mkdir "$BUILD_DIR"
-
-meson --cross-file "$SRC_DIR/build-win64.txt" \
- --buildtype "release" \
- --prefix "$BUILD_DIR" \
- --strip \
- --bindir "x64" \
- --libdir "x64" \
- -Denable_tests=True \
- "$BUILD_DIR"
-
-sed -i 's/\/db"/\/"/g; s/\.\.\///g' "$BUILD_DIR"/"$DB"
-
-cp "$BUILD_DIR"/"$DB" "$SRC_DIR"
-rm -R "$BUILD_DIR"
-
-echo "Clang Compilation Database ($DB) created"