Browse Source

STYLE: better error message when KDE4 hasn't been found

Alex
Alexander Neundorf 19 years ago
parent
commit
0d540b31e0
1 changed files with 3 additions and 2 deletions
  1. 3 2
      Modules/FindKDE4.cmake

+ 3 - 2
Modules/FindKDE4.cmake

@@ -60,13 +60,14 @@ IF (KDE4_KDECONFIG_EXECUTABLE)
 
       # use FindKDE4Internal.cmake to do the rest
       FIND_PACKAGE(KDE4Internal ${_req} ${_quiet})
-
+   ELSE (KDE4_DATA_DIR)
+      MESSAGE(FATAL_ERROR "ERROR: cmake/modules/FindKDE4Internal.cmake not found in ${_data_DIR}")
    ENDIF (KDE4_DATA_DIR)
 
 ENDIF (KDE4_KDECONFIG_EXECUTABLE)
 
 
 IF (KDE4_FIND_REQUIRED AND NOT KDE4_FOUND)
-   MESSAGE(FATAL_ERROR "Could not find KDE4")
+   MESSAGE(FATAL_ERROR "ERROR: Could not find KDE4")
 ENDIF (KDE4_FIND_REQUIRED AND NOT KDE4_FOUND)