diff options
author | Alex Neundorf <neundorf@kde.org> | 2010-12-20 20:56:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-01-04 13:20:08 (GMT) |
commit | ce28737c933a749cbc84c601f3ac9f56e4c832aa (patch) | |
tree | 44bf07879719b60d9c846bbd18d49f299e9c5cae /Modules/FindGIF.cmake | |
parent | 7db8db5b7279a74aa4eab9cc1996a6a94131dc7e (diff) | |
download | CMake-ce28737c933a749cbc84c601f3ac9f56e4c832aa.zip CMake-ce28737c933a749cbc84c601f3ac9f56e4c832aa.tar.gz CMake-ce28737c933a749cbc84c601f3ac9f56e4c832aa.tar.bz2 |
Remove usage of CMAKE_CURRENT_LIST_DIR now that we have CMP0017
This puts the new search behaviour for included files in action, i.e.
now when a file from Modules/ include()s another file, it also gets the
one from Modules/ included, i.e. the one it expects.
Alex
Diffstat (limited to 'Modules/FindGIF.cmake')
-rw-r--r-- | Modules/FindGIF.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindGIF.cmake b/Modules/FindGIF.cmake index 784b4ec..e0d25e1 100644 --- a/Modules/FindGIF.cmake +++ b/Modules/FindGIF.cmake @@ -60,7 +60,7 @@ SET(GIF_LIBRARIES ${GIF_LIBRARY}) # handle the QUIETLY and REQUIRED arguments and set GIF_FOUND to TRUE if # all listed variables are TRUE -INCLUDE("${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake") +INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(GIF DEFAULT_MSG GIF_LIBRARY GIF_INCLUDE_DIR) MARK_AS_ADVANCED(GIF_INCLUDE_DIR GIF_LIBRARY) |