diff options
| author | 2024-09-09 16:17:08 -0400 | |
|---|---|---|
| committer | 2024-09-09 16:17:08 -0400 | |
| commit | 521316d09b39a410d7e797efa176371e31a3a57e (patch) | |
| tree | bb0c6bb5a9df1280fceb483983e2328ee87c0da0 /premake5.lua | |
| parent | bugfix to inline backspace and delete on multiline buffer (diff) | |
add aliasing to init.lua
Diffstat (limited to 'premake5.lua')
| -rw-r--r-- | premake5.lua | 4 |
1 files changed, 3 insertions, 1 deletions
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"' }) |
