diff options
author | Alex Neundorf <neundorf@kde.org> | 2010-12-20 21:56:51 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-01-04 08:20:08 -0500 |
commit | ce28737c933a749cbc84c601f3ac9f56e4c832aa (patch) | |
tree | 44bf07879719b60d9c846bbd18d49f299e9c5cae /Modules/FindwxWidgets.cmake | |
parent | 7db8db5b7279a74aa4eab9cc1996a6a94131dc7e (diff) | |
download | cmake-ce28737c933a749cbc84c601f3ac9f56e4c832aa.tar.gz |
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/FindwxWidgets.cmake')
-rw-r--r-- | Modules/FindwxWidgets.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindwxWidgets.cmake b/Modules/FindwxWidgets.cmake index b82ccd07d1..d991cd4928 100644 --- a/Modules/FindwxWidgets.cmake +++ b/Modules/FindwxWidgets.cmake @@ -827,7 +827,7 @@ DBG_MSG("wxWidgets_USE_FILE : ${wxWidgets_USE_FILE}") #===================================================================== #===================================================================== -INCLUDE("${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake") +INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(wxWidgets DEFAULT_MSG wxWidgets_FOUND) # Maintain consistency with all other variables. SET(wxWidgets_FOUND ${WXWIDGETS_FOUND}) |