diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-27 17:56:27 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-27 17:56:27 +0900 |
commit | 8e2113199710b6a2396ddad0f48d9e7ea06f8cc7 (patch) | |
tree | db45d458d1f2f0be724bcaccf7f92e74a22dba87 | |
parent | 704fda67830cf07a5d50973b744e9a0aa2135e92 (diff) | |
download | libquotient-8e2113199710b6a2396ddad0f48d9e7ea06f8cc7.tar.gz libquotient-8e2113199710b6a2396ddad0f48d9e7ea06f8cc7.zip |
Fixed a false alarm in Qt Creator
Qt Creator turns out to be watching for "at :" substring in logs to detect messages that refer to files - which is not our case. Removing a comma fixes the alarm.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index eff5653d..e7a2db91 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ if (CMAKE_BUILD_TYPE) message( STATUS "Build type: ${CMAKE_BUILD_TYPE}") endif(CMAKE_BUILD_TYPE) message( STATUS "Using compiler: ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}" ) -message( STATUS "Using Qt ${Qt5_VERSION} at: ${Qt5_Prefix}" ) +message( STATUS "Using Qt ${Qt5_VERSION} at ${Qt5_Prefix}" ) message( STATUS "=============================================================================" ) message( STATUS ) |