diff options
| author | Alexander Neundorf <neundorf@kde.org> | 2008-08-10 09:13:30 +0000 | 
|---|---|---|
| committer | Alexander Neundorf <neundorf@kde.org> | 2008-08-10 09:13:30 +0000 | 
| commit | 6402cc6a7ad14a3c37408dc0624eac8d5095fd52 (patch) | |
| tree | 0ffd2efba9c37b1027281490e1c0368facf155f0 | |
| parent | 648a847d1d40efe245ba8ca00f3dfc121053c79d (diff) | |
| download | extra-cmake-modules-6402cc6a7ad14a3c37408dc0624eac8d5095fd52.tar.gz extra-cmake-modules-6402cc6a7ad14a3c37408dc0624eac8d5095fd52.tar.bz2 | |
use the new-style cmake 2.6 find_package() mode which automatically searches for the installed Automoc4Config.cmake in the appropriate directories.
Alex
svn path=/trunk/KDE/kdelibs/; revision=844694
| -rw-r--r-- | modules/FindAutomoc4.cmake | 39 | 
1 files changed, 6 insertions, 33 deletions
| diff --git a/modules/FindAutomoc4.cmake b/modules/FindAutomoc4.cmake index ad3ed05f..fad02bef 100644 --- a/modules/FindAutomoc4.cmake +++ b/modules/FindAutomoc4.cmake @@ -20,40 +20,13 @@  # check if we are inside KDESupport and automoc is enabled  if("${KDESupport_SOURCE_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")     # when building this project as part of kdesupport -   set(AUTOMOC4_CONFIG_FILE "${KDESupport_SOURCE_DIR}/automoc/Automoc4Config.cmake") +   include("${KDESupport_SOURCE_DIR}/automoc/Automoc4Config.cmake")  else("${KDESupport_SOURCE_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")     # when building this project outside kdesupport - -   # CMAKE_[SYSTEM_]PREFIX_PATH exists starting with cmake 2.6.0 -   file(TO_CMAKE_PATH "$ENV{CMAKE_PREFIX_PATH}" _env_CMAKE_PREFIX_PATH) -   file(TO_CMAKE_PATH "$ENV{CMAKE_LIBRARY_PATH}" _env_CMAKE_LIBRARY_PATH) - -   find_file(AUTOMOC4_CONFIG_FILE NAMES Automoc4Config.cmake  -             PATH_SUFFIXES automoc4 lib/automoc4 lib64/automoc4 -             PATHS ${_env_CMAKE_PREFIX_PATH} ${CMAKE_PREFIX_PATH} ${CMAKE_SYSTEM_PREFIX_PATH}  -                   ${_env_CMAKE_LIBRARY_PATH} ${CMAKE_LIBRARY_PATH} ${CMAKE_SYSTEM_LIBRARY_PATH} -                   ${CMAKE_INSTALL_PREFIX} -             NO_DEFAULT_PATH ) +   # use the new "config-mode" of cmake 2.6, which searches the installed Automoc4Config.cmake file +   # see the man page for details +   find_package(Automoc4 QUIET NO_MODULE)  endif("${KDESupport_SOURCE_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}") - -if(AUTOMOC4_CONFIG_FILE) -   include(${AUTOMOC4_CONFIG_FILE}) -   set(AUTOMOC4_FOUND TRUE) -else(AUTOMOC4_CONFIG_FILE) -   set(AUTOMOC4_FOUND FALSE) -endif(AUTOMOC4_CONFIG_FILE) - -if (AUTOMOC4_FOUND) -   if (NOT Automoc4_FIND_QUIETLY) -      message(STATUS "Found Automoc4: ${AUTOMOC4_EXECUTABLE}") -   endif (NOT Automoc4_FIND_QUIETLY) -else (AUTOMOC4_FOUND) -   if (Automoc4_FIND_REQUIRED) -      message(FATAL_ERROR "Did not find automoc4 (part of kdesupport).") -   else (Automoc4_FIND_REQUIRED) -      if (NOT Automoc4_FIND_QUIETLY) -         message(STATUS "Did not find automoc4 (part of kdesupport).") -      endif (NOT Automoc4_FIND_QUIETLY) -   endif (Automoc4_FIND_REQUIRED) -endif (AUTOMOC4_FOUND) +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Automoc4 "Did not find automoc4 (part of kdesupport)." AUTOMOC4_EXECUTABLE) | 
