Skip to content

Commit db60199

Browse files
committed
Refactor: Update releaser
1 parent ea96100 commit db60199

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/releaser.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
with:
2222
arch: x64
2323

24+
- name: Install LuaJIT
25+
uses: leafo/gh-actions-lua@v12
26+
with:
27+
luaVersion: 'luajit-2.1'
28+
2429
- name: Build
2530
run: |
2631
cd ${{ github.workspace }}

dll_src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ endif()
2222
add_library(luajit SHARED IMPORTED)
2323
set_target_properties(luajit PROPERTIES
2424
IMPORTED_IMPLIB "${LUAJIT_LIB}"
25-
INTERFACE_INCLUDE_DIRECTORIES "${LUA_DIR}/include"
25+
INTERFACE_INCLUDE_DIRECTORIES "${LUA_DIR}/include/luajit-2.1"
2626
)
2727

2828
# Main target definition.

0 commit comments

Comments
 (0)