Skip to content

Commit

Permalink
Merge pull request #259 from marco-m/missing-deps-wording
Browse files Browse the repository at this point in the history
cmake: better wording for missing dependencies
  • Loading branch information
wwmayer committed Aug 21, 2016
2 parents ce44333 + 8f426e5 commit 97f6aa8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions CMakeLists.txt
Expand Up @@ -618,9 +618,9 @@ endif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
find_package(SWIG)

IF(NOT SWIG_FOUND)
MESSAGE("==================================================\n"
"SWIG not found, don't build SWIG binding for pivy.\n"
"==================================================\n")
MESSAGE("=====================================================\n"
"SWIG not found, will not build SWIG binding for pivy.\n"
"=====================================================\n")
ENDIF(NOT SWIG_FOUND)

# -------------------------------- Eigen --------------------------------
Expand Down Expand Up @@ -651,15 +651,15 @@ endif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
include(${QT_USE_FILE})

IF(NOT QT4_FOUND)
MESSAGE(FATAL_ERROR "=======================\n"
"Qt libraries not found.\n"
"=======================\n")
MESSAGE(FATAL_ERROR "========================\n"
"Qt4 libraries not found.\n"
"========================\n")
ENDIF(NOT QT4_FOUND)

IF(NOT QT_QTWEBKIT_FOUND)
MESSAGE("=====================================================\n"
"Qt Webkit not found, don't build browser integration.\n"
"=====================================================\n")
MESSAGE("========================================================\n"
"Qt Webkit not found, will not build browser integration.\n"
"========================================================\n")
ENDIF(NOT QT_QTWEBKIT_FOUND)


Expand Down

0 comments on commit 97f6aa8

Please sign in to comment.