Skip to content

Commit

Permalink
Discourage using configure/make to build Poco. CMake is officially su…
Browse files Browse the repository at this point in the history
…pported build system.
  • Loading branch information
matejk committed Feb 19, 2024
1 parent 56e340c commit f1b2cc0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# The global Makefile for POCO [generated by mkrelease]
#

$(warning *********************************************************************)
$(warning WARNING: Make is not officially supported to build Poco, use CMake
$(warning *********************************************************************)

sinclude config.make
sinclude config.build
POCO_CONFIG_INCLUDED = 1
Expand Down
4 changes: 4 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,10 @@ $(ls -C "$base"/build/config/)
ENDHELP
}

echo "*********************************************************************"
echo "WARNING: Make is not officially supported to build Poco, use CMake"
echo "*********************************************************************"

# save cwd
build=$(pwd)
# get directory where we are located
Expand Down
4 changes: 4 additions & 0 deletions release/script/mkrelease
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ cat >${target}/Makefile <<'ENDOFSCRIPT'
# The global Makefile for POCO [generated by mkrelease]
#
$(warning *********************************************************************)
$(warning WARNING: Make is not officially supported to build Poco, use CMake
$(warning *********************************************************************)
sinclude config.make
sinclude config.build
Expand Down

0 comments on commit f1b2cc0

Please sign in to comment.