define a size type usize and use it instead of size_t or u64 #74
This file contains 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: | |
windows: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: make project | |
working-directory: projects | |
run: | | |
./genie.exe vs2019 | |
- name: build engine | |
working-directory: projects | |
shell: cmd | |
run: | | |
"C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/MSBuild/Current/Bin/MSBuild.exe" tmp/vs2019/OpenFBX.sln /p:Configuration=RelWithDebInfo |