Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 439 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 439 Bytes

Project Valhalla

pipx install conan 
pipx ensurepath 

conan profile detect --force

conan install . --build=missing  -s build_type=Debug
conan install . --build=missing  -s build_type=Release

cmake -S. -Bbuild/Debug  -DCMAKE_BUILD_TYPE=Debug
cmake -S. -Bbuild/Release  -DCMAKE_BUILD_TYPE=Release

cmake --build build/Debug -j8
cmake --build build/Release -j8

Test docker

docker compose --profile run up --build