]> git.sesse.net Git - nageru/blobdiff - scripts/compile_cef_dll_wrapper.sh
Move everything into a separate futatabi/ subdir, for the upcoming merge with Futatabi.
[nageru] / scripts / compile_cef_dll_wrapper.sh
diff --git a/scripts/compile_cef_dll_wrapper.sh b/scripts/compile_cef_dll_wrapper.sh
deleted file mode 100755 (executable)
index ee8dbb2..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#! /bin/sh
-set -e
-
-BUILD_DIR="$1"
-CEF_DIR="$2"
-CMAKE="$3"
-OUTPUT="$4"
-STAMP="$5"
-
-! [ -d "$BUILD_DIR" ] || rm -r "$BUILD_DIR"
-mkdir "$BUILD_DIR"
-( cd "$BUILD_DIR" && $CMAKE -G Ninja "$CEF_DIR" && ninja libcef_dll_wrapper )
-cp "$BUILD_DIR"/libcef_dll_wrapper/libcef_dll_wrapper.a "$OUTPUT"
-touch "$STAMP"