mirror of
https://github.com/IRBorisov/ConceptCore.git
synced 2025-06-26 01:00:36 +03:00
13 lines
428 B
PowerShell
13 lines
428 B
PowerShell
# Build single project
|
|
# Copy file to specific project and run the script
|
|
Set-Location $PSScriptRoot
|
|
|
|
& conan profile detect --force
|
|
& conan install . --build=missing
|
|
|
|
& cmake --preset conan-default
|
|
# & cmake --preset conan-default -DCC_BuildTests=False
|
|
& cmake --build --preset conan-release
|
|
& ctest --test-dir build --output-on-failure
|
|
# & cmake --install build --prefix ../output
|
|
& cmake --install build --prefix ../../output |