We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea96100 commit db60199Copy full SHA for db60199
.github/workflows/releaser.yml
@@ -21,6 +21,11 @@ jobs:
21
with:
22
arch: x64
23
24
+ - name: Install LuaJIT
25
+ uses: leafo/gh-actions-lua@v12
26
+ with:
27
+ luaVersion: 'luajit-2.1'
28
+
29
- name: Build
30
run: |
31
cd ${{ github.workspace }}
dll_src/CMakeLists.txt
@@ -22,7 +22,7 @@ endif()
add_library(luajit SHARED IMPORTED)
set_target_properties(luajit PROPERTIES
IMPORTED_IMPLIB "${LUAJIT_LIB}"
- INTERFACE_INCLUDE_DIRECTORIES "${LUA_DIR}/include"
+ INTERFACE_INCLUDE_DIRECTORIES "${LUA_DIR}/include/luajit-2.1"
)
# Main target definition.
0 commit comments