using ninja instead of jom for windows build examples
This commit is contained in:
parent
aec8880e85
commit
afd5c72a93
|
@ -9,12 +9,6 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Download Jom
|
|
||||||
run: |
|
|
||||||
Invoke-WebRequest -Uri "http://mirrors.ukfast.co.uk/sites/qt.io/official_releases/jom/jom_1_1_3.zip" -OutFile "jom_1_1_3.zip"
|
|
||||||
New-Item -Name "jom" -ItemType "directory"
|
|
||||||
Expand-Archive -Path jom_1_1_3.zip -DestinationPath .\jom
|
|
||||||
echo "$(Get-Location)\jom" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
||||||
- name: Setup env variables
|
- name: Setup env variables
|
||||||
id: envs
|
id: envs
|
||||||
run: |
|
run: |
|
||||||
|
@ -27,5 +21,5 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake -G "NMake Makefiles" -DVCG_BUILD_EXAMPLES=ON ..
|
cmake -GNinja -DVCG_BUILD_EXAMPLES=ON ..
|
||||||
jom -j4
|
ninja
|
||||||
|
|
Loading…
Reference in New Issue