From ddd848dd8cd09c339dae2530428a6b21d8b75fae Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Wed, 16 Jun 2021 17:12:24 +0200 Subject: [PATCH] Linking with the lua54.dll --- lib/LuaGate/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/LuaGate/CMakeLists.txt b/lib/LuaGate/CMakeLists.txt index a4d9ad74..d12cbc48 100644 --- a/lib/LuaGate/CMakeLists.txt +++ b/lib/LuaGate/CMakeLists.txt @@ -22,7 +22,7 @@ if (NOT LUA_FOUND) if (EXISTS ${CMAKE_SOURCE_DIR}/include/lua.hpp) message("Using local lua") set(LUA_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/include/) - set(LUA_LIBRARIES ${CMAKE_SOURCE_DIR}) + set(LUA_LIBRARIES ${CMAKE_SOURCE_DIR}/lua54.dll) else() message(FATAL_ERROR "Lua could not be found.") endif()