cpp-d1064d
[projects.git] / tools / make / cmake_check
diff --git a/tools/make/cmake_check b/tools/make/cmake_check
deleted file mode 100755 (executable)
index 22f6eb4..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-set -e
-cd ../build
-if [ -e debian/$paket.cmake ]
-then
-       # do checks
-       if [ -e debian/$paket.build ]
-       then
-               echo "cmake is not compatible with other builds. Remove $paket.build"
-               exit 1
-       fi
-       if [ -e debian/$paket.prebuild ]
-       then
-               echo "cmake is not compatible with other builds. Remove $paket.prebuild"
-               exit 2
-       fi
-       
-       cp debian/$paket.cmake CMakeLists.txt
-       echo "make" > debian/$paket.build
-       chmod 755 debian/$paket.build
-       echo "cmake ." > debian/$paket.prebuild
-       chmod 755 debian/$paket.prebuild
-fi
-