diff options
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rwxr-xr-x | configure | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fad4e2ff..847978df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,6 +52,7 @@ list(SORT PLUGINS) string(REPLACE ";" ", " PLUGINS_TEXT "${PLUGINS}") message(STATUS "Configuring Dino ${PROJECT_VERSION} with plugins: ${PLUGINS_TEXT}") +message(WARNING "Using CMake, ./configure or make to build Dino is deprecated and will be removed before the 0.5 release. Use Meson instead.") # Prepare instal paths macro(set_path what val desc) @@ -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 |