edit build script

This commit is contained in:
jadebenn 2024-04-05 21:00:23 -05:00
parent 9fc6b4e973
commit 04a7bc2b8d
2 changed files with 18 additions and 2 deletions

View File

@ -289,6 +289,23 @@
}
],
"workflowPresets": [
{
"name": "default",
"steps": [
{
"type": "configure",
"name": "default"
},
{
"type": "build",
"name": "default"
},
{
"type": "test",
"name": "default"
}
]
},
{
"name": "ci-windows-2022",
"displayName": "Windows CI Workflow",

View File

@ -6,8 +6,7 @@ mkdir -p build
cd build
# Run cmake to generate make files
cmake ..
cmake .. -DCMAKE_BUILD_TYPE="Release"
# To build utilizing multiple cores, append `-j` and the amount of cores to utilize, for example `cmake --build . --config Release -j8'
cmake --build . --config Release $1