Simplification du constructeur de la classe Application #9
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: build | |
| on: [push] | |
| jobs: | |
| win: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: dependencies | |
| run: | | |
| choco install vulkan-sdk | |
| - name: build | |
| run: | | |
| Get-ChildItem D:\ | select FullName | |
| refreshenv | |
| cmake --version | |
| cmake -B build -DCMAKE_BUILD_TYPE=Debug | |
| cmake --build build | |