aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMarvin W <git@larma.de>2025-01-03 22:00:28 +0100
committerMarvin W <git@larma.de>2025-02-12 21:23:53 -0600
commit0b17090231f0c5f7a74991f568d508563f2ef9c2 (patch)
treed7b772e8f97ec84f653f9e880a653b7134987bf5 /configure
parentb65120373c1abc4817013cdb38edf3abfcdf8cdb (diff)
downloaddino-0b17090231f0c5f7a74991f568d508563f2ef9c2.tar.gz
dino-0b17090231f0c5f7a74991f568d508563f2ef9c2.zip
CMake: Mark as deprecated
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure18
1 files changed, 18 insertions, 0 deletions
diff --git a/configure b/configure
index ab22d840..20e54e05 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,10 @@
#!/bin/sh
+echo "Warning in ./configure:"
+echo " Using CMake, ./configure or make to build Dino is deprecated and will be"
+echo " removed before the 0.5 release. Use Meson instead."
+echo ""
+
OPTS=`getopt -o "h" --long \
help,fetch-only,no-debug,disable-fast-vapi,with-tests,release,with-libsoup3,\
enable-plugin:,disable-plugin:,\
@@ -235,7 +240,15 @@ cd ..
cat << EOF > Makefile
default:
+ @echo "Warning in Makefile:"
+ @echo " Using CMake, ./configure or make to build Dino is deprecated and will be"
+ @echo " removed before the 0.5 release. Use Meson instead."
+ @echo ""
@sh -c "cd build; $exec_command"
+ @echo ""
+ @echo "Warning in Makefile:"
+ @echo " Using CMake, ./configure or make to build Dino is deprecated and will be"
+ @echo " removed before the 0.5 release. Use Meson instead."
distclean: clean uninstall
test: default
@@ -245,3 +258,8 @@ test: default
EOF
echo "-- Configured. Type 'make' to build, 'make install' to install."
+
+echo ""
+echo "Warning in ./configure:"
+echo " Using CMake, ./configure or make to build Dino is deprecated and will be"
+echo " removed before the 0.5 release. Use Meson instead." \ No newline at end of file