Skip to content

Commit

Permalink
wip10
Browse files Browse the repository at this point in the history
  • Loading branch information
pfeodrippe committed Jul 23, 2024
1 parent 1fa6a9a commit a5cd273
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@ name: CI
on: [ push, pull_request ]

jobs:
msvc_cl_dll:
runs-on: windows-latest
name: Visual Studio CL Shared Library
strategy:
fail-fast: false

steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Populate submodules
run: |
git submodule update --init --recursive
- name: Configure CMake
run: cmake -B JoltPhysics/Build/VS2022_CL -G "Visual Studio 17 2022" -A x64 Build -DBUILD_SHARED_LIBS=Yes
- name: Build
run: msbuild JoltPhysics\Build\VS2022_CL\JoltPhysics.sln /property:Configuration=release -m

build-windows:
runs-on: windows-latest
timeout-minutes: 30
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@
[submodule "zig-gamedev"]
path = zig-gamedev
url = https://github.com/zig-gamedev/zig-gamedev.git
[submodule "JoltPhysics"]
path = JoltPhysics
url = https://github.com/jrouwe/JoltPhysics.git
1 change: 1 addition & 0 deletions JoltPhysics
Submodule JoltPhysics added at a8fbf8

0 comments on commit a5cd273

Please sign in to comment.