From 521316d09b39a410d7e797efa176371e31a3a57e Mon Sep 17 00:00:00 2001 From: BanceDev Date: Mon, 9 Sep 2024 16:17:08 -0400 Subject: add aliasing to init.lua --- premake5.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'premake5.lua') diff --git a/premake5.lua b/premake5.lua index 34d98dd..1804d09 100644 --- a/premake5.lua +++ b/premake5.lua @@ -18,12 +18,14 @@ else links({ "lua" }) end -includedirs({ lua_inc_path }) +includedirs({ lua_inc_path, "lib/hashmap" }) libdirs({ lua_lib_path }) files({ "src/**.h", "src/**.c", + "lib/hashmap/**.h", + "lib/hashmap/**.c", }) defines({ 'LUSH_VERSION="0.0.1"' }) -- cgit v1.2.3-59-g8ed1b