Skip to content
New issue

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

Polish: VERSION file support in CMake and Conan builds; VERSION file checks in GitHub CI/CD pipeline; misc formatting. #58

Merged
merged 14 commits into from
Feb 26, 2024
Merged
Prev Previous commit
Next Next commit
Build fix.
  • Loading branch information
ygoldfeld committed Feb 25, 2024
commit 155935bcb0112d08d2314da2c831bfb3da995dcb
2 changes: 1 addition & 1 deletion tools/cmake/FlowLikeProject.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if(PROJ_VERSION STREQUAL "NOTFOUND")
# "fake" version #.
set(PROJ_VERSION "0.0.1")
message(WARNING "There's no ${version_file}, and we are not part of a meta-project, so nowhere to find "
"VERSION. Assuming a default version number:"
"VERSION. Assuming a default version number:")
message(STATUS "Version: [${PROJ_VERSION}] (default value; no VERSION file found).")
else()
set(version_file "${FLOW_LIKE_META_ROOT}/VERSION")
Expand Down