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 /src/lib_proj.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 'src/lib_proj.cmake')
| -rw-r--r-- | src/lib_proj.cmake | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib_proj.cmake b/src/lib_proj.cmake index 3c42f973..49ea787e 100644 --- a/src/lib_proj.cmake +++ b/src/lib_proj.cmake @@ -1,8 +1,8 @@ +message(STATUS "Configuring proj library:") + ############################################## ### SWITCH BETWEEN STATIC OR SHARED LIBRARY### ############################################## -colormsg(_HIBLUE_ "Configuring proj library:") -message(STATUS "") # default config, shared on unix and static on Windows if(UNIX) @@ -64,7 +64,7 @@ if(ENABLE_LTO) set(ENABLE_LTO_METHOD "property") endif() endif() -boost_report_value(ENABLE_LTO) +print_variable(ENABLE_LTO) ############################################## @@ -456,7 +456,7 @@ endif() ############################################## # Core configuration summary ############################################## -boost_report_value(PROJ_CORE_TARGET) -boost_report_value(PROJ_CORE_TARGET_OUTPUT_NAME) -boost_report_value(PROJ_LIBRARY_TYPE) -boost_report_value(PROJ_LIBRARIES) +print_variable(PROJ_CORE_TARGET) +print_variable(PROJ_CORE_TARGET_OUTPUT_NAME) +print_variable(PROJ_LIBRARY_TYPE) +print_variable(PROJ_LIBRARIES) |
