We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using fmt as subdirectory
CMakeLists.txt:
cmake_minimum_required(VERSION 3.8) project(untiteled VERSION 1.0 LANGUAGES CXX) ...
and it's generate warning:
CMake Warning (dev) at 3rdparty/fmt-4.0.0/CMakeLists.txt:38 (project): Policy CMP0048 is not set: project() command manages VERSION variables. ...
It could be fixed with
if (POLICY CMP0048) cmake_policy(SET CMP0048 OLD) endif ()
after cmake_minimum_required(VERSION 2.8.12).
cmake_minimum_required(VERSION 2.8.12)
The text was updated successfully, but these errors were encountered:
Thanks for the bug report! Could you by any chance submit a PR?
Sorry, something went wrong.
PR #536
No branches or pull requests
I'm using fmt as subdirectory
CMakeLists.txt:
and it's generate warning:
It could be fixed with
after
cmake_minimum_required(VERSION 2.8.12)
.The text was updated successfully, but these errors were encountered: