From 0dc55ebc86663ea245730fa4bf77c0786a65c69b Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 10 Oct 2013 14:41:41 +0000 Subject: [PATCH] Laurens Voerman, "my cmake (2.8.10.2 generating for Visual Studio 11 Win64) doesn't like include(${CMAKE_MODULE_PATH}/FindPackageHandleStandardArgs.cmake) in CMakeModules/FindLua52.cmake changing to a more common include(FindPackageHandleStandardArgs) solves my problem." --- CMakeModules/FindLua52.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeModules/FindLua52.cmake b/CMakeModules/FindLua52.cmake index e6eff7e9d..3ec17c65c 100644 --- a/CMakeModules/FindLua52.cmake +++ b/CMakeModules/FindLua52.cmake @@ -71,7 +71,7 @@ if(LUA_INCLUDE_DIR AND EXISTS "${LUA_INCLUDE_DIR}/lua.h") endif() -include(${CMAKE_MODULE_PATH}/FindPackageHandleStandardArgs.cmake) +include(FindPackageHandleStandardArgs) # handle the QUIETLY and REQUIRED arguments and set LUA_FOUND to TRUE if # all listed variables are TRUE