Updated Dear ImGui / CImGui to 1.92.2b dock #36
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows OS Nim 2.2.4 compilation | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| build_windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jiro4989/setup-nim-action@v2 | |
| with: | |
| nim-version: '2.2.4' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - run: | | |
| pacman -Syu --noconfirm | |
| pacman -S --noconfirm mingw-w64-x86_64-{gcc,glfw,SDL2,sdl3} make | |
| nimble install | |
| nimble make |