-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
CMake CMP0153 #1102
Comments
pramsey
added a commit
to pramsey/geos
that referenced
this issue
Jun 6, 2024
pramsey
added a commit
that referenced
this issue
Jun 6, 2024
pramsey
added a commit
that referenced
this issue
Jun 6, 2024
It looks like this issue can now be closed |
strk
added a commit
that referenced
this issue
Oct 30, 2024
Syntax confirmed by https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake Closes GH-1187 References GH-1102 when it probably broke
strk
added a commit
that referenced
this issue
Oct 30, 2024
Syntax confirmed by https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake Closes GH-1187 References GH-1102 when it probably broke
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
CMP0153
.. versionadded:: 3.28
The
exec_program()
command should not be called.This command has long been superseded by the
execute_process()
command and has been deprecated since CMake 3.0.
CMake >= 3.28 prefer that this command never be called.
The
OLD
behavior for this policy is to allow the command to be called.The
NEW
behavior for this policy is to issue aFATAL_ERROR
when thecommand is called.
This policy was introduced in CMake version 3.28.
It may be set by
cmake_policy()
orcmake_minimum_required()
.If it is not set, CMake warns, and uses
OLD
behavior... note::
The
OLD
behavior of a policy isdeprecated by definition
and may be removed in a future version of CMake.
The text was updated successfully, but these errors were encountered: