From e63aab40f6f62149678a55eba2c9bbf73242786d Mon Sep 17 00:00:00 2001 From: Andrey Date: Fri, 24 Jul 2020 12:14:00 +0300 Subject: [PATCH] fix FindPIP.cmake --- cmake/FindPIP.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindPIP.cmake b/cmake/FindPIP.cmake index 910d72bd..52678bef 100644 --- a/cmake/FindPIP.cmake +++ b/cmake/FindPIP.cmake @@ -157,7 +157,7 @@ if(__module_Cloud AND __module_IOUtils) set_target_properties(PIP::Cloud PROPERTIES INTERFACE_LINK_LIBRARIES "PIP::IOUtils") endif() if(__module_Lua) - set_target_properties(PIP::Lua PROPERTIES INTERFACE_INCLUDE_DIRECTORIES ${LUA_INCLUDE_DIR} INTERFACE_LINK_LIBRARIES "PIP" ${LUA_LIBRARIES}) + set_target_properties(PIP::Lua PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${LUA_INCLUDE_DIR}" INTERFACE_LINK_LIBRARIES "PIP ${LUA_LIBRARIES}") endif() include(PIPMacros)