Skip to content

Commit

Permalink
Merge pull request #351 from spelunky-fyi/Fix
Browse files Browse the repository at this point in the history
Another fix and update
  • Loading branch information
Dregu authored Oct 22, 2023
2 parents 975769f + 1b4f795 commit b6c2d42
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
fetch-depth: 1
submodules: true

- name: Remove Strawberry Perl from PATH
run: |
$env:PATH = $env:PATH -replace "C:\\Strawberry\\c\\bin;", ""
"PATH=$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: Get tags for release notes
shell: bash
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/continous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
fetch-depth: 1
submodules: true

- name: Remove Strawberry Perl from PATH
run: |
$env:PATH = $env:PATH -replace "C:\\Strawberry\\c\\bin;", ""
"PATH=$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: Configure
run: |
mkdir build
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/whip-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
fetch-depth: 1
submodules: true

- name: Remove Strawberry Perl from PATH
run: |
$env:PATH = $env:PATH -replace "C:\\Strawberry\\c\\bin;", ""
"PATH=$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Append
- name: Get tags for release notes
shell: bash
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ target_include_directories(imgui PUBLIC imgui)
# --------------------------------------------------
# sol
set(BUILD_LUA_AS_DLL OFF)
set(SOL2_LUA_VERSION "5.4")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/sol2/cmake/Modules")
set(SOL2_LUA_VERSION "5.4.6")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/sol2/cmake/Modules;${CMAKE_CURRENT_SOURCE_DIR}/sol2/cmake/Packages;${CMAKE_CURRENT_SOURCE_DIR}/sol2/cmake/Includes")
find_package(LuaBuild REQUIRED COMPONENTS ${SOL2_LUA_VERSION})
add_subdirectory(sol2)

Expand Down
2 changes: 1 addition & 1 deletion src/sol2
Submodule sol2 updated 649 files

0 comments on commit b6c2d42

Please sign in to comment.