diff options
| author | Mike Taves <mwtoews@gmail.com> | 2020-02-11 11:05:34 +1300 |
|---|---|---|
| committer | Mike Taves <mwtoews@gmail.com> | 2020-02-11 11:09:00 +1300 |
| commit | 5179435614ab9bf8493bdfdd852221b27cd6ea0e (patch) | |
| tree | d888f7a938825c8c3b982c1a5ce7dc2c41999dbf /cmake/ProjVersion.cmake | |
| parent | bd6148db5f5b9a0a13f3dc2d2c35a066c15a57ed (diff) | |
| download | PROJ-5179435614ab9bf8493bdfdd852221b27cd6ea0e.tar.gz PROJ-5179435614ab9bf8493bdfdd852221b27cd6ea0e.zip | |
CMake: simplify message functions
* Remove colormsg(); just use message()
* Rename boost_report_value() with print_variable()
Diffstat (limited to 'cmake/ProjVersion.cmake')
| -rw-r--r-- | cmake/ProjVersion.cmake | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmake/ProjVersion.cmake b/cmake/ProjVersion.cmake index d64795a8..deeaa2b4 100644 --- a/cmake/ProjVersion.cmake +++ b/cmake/ProjVersion.cmake @@ -45,9 +45,8 @@ ${${PROJECT_NAME}_VERSION_PATCH}") ${${PROJECT_NAME}_VERSION_MINOR}") endif() - message(STATUS "") - boost_report_value(${PROJECT_NAME}_VERSION) + print_variable(${PROJECT_NAME}_VERSION) if(WIN32) - boost_report_value(${PROJECT_NAME}_ABI_VERSION) + print_variable(${PROJECT_NAME}_ABI_VERSION) endif() endmacro() |
