mirror of
https://github.com/IRBorisov/ConceptCore.git
synced 2025-06-26 09:10:37 +03:00
11 lines
300 B
PowerShell
11 lines
300 B
PowerShell
# Build single project
|
|
# TODO: setup project folder as parameter
|
|
Set-Location $PSScriptRoot
|
|
|
|
& conan profile detect --force
|
|
& conan install .
|
|
|
|
& cmake --preset conan-default
|
|
& cmake --build --preset conan-release
|
|
& ctest --test-dir build --output-on-failure
|
|
& cmake --install build --prefix ../output |