Minor build bug fixes.

* Remove ${CMAKE_CURRENT_LIST_DIR} copied FindPackageHandleStandardArgs.cmake.
* Comment out debug messages in FindwxWidgets.cmake.
This commit is contained in:
Wayne Stambaugh 2014-09-26 20:28:12 -04:00
parent ed19967099
commit 5598113a45
2 changed files with 4 additions and 4 deletions

View File

@ -127,8 +127,8 @@
# (To distribute this file outside of CMake, substitute the full
# License text for the above reference.)
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake)
include(${CMAKE_CURRENT_LIST_DIR}/CMakeParseArguments.cmake)
include(FindPackageMessage.cmake)
include(CMakeParseArguments.cmake)
# internal helper macro
macro(_FPHSA_FAILURE_MESSAGE _msg)

View File

@ -150,10 +150,10 @@
# Helper macro to control the debugging output globally. There are
# two versions for controlling how verbose your output should be.
macro(dbg_msg _MSG)
message(STATUS "${_MSG}")
# message(STATUS "${_MSG}")
endmacro(dbg_msg)
macro(dbg_msg_v _MSG)
message(STATUS "${_MSG}")
# message(STATUS "${_MSG}")
endmacro(dbg_msg_v)
# Clear return values in case the module is loaded more than once.