15 lines
191 B
Makefile
15 lines
191 B
Makefile
|
|
|
|
|
|
|
|
|
|
PHONY: test build conan_install
|
|
|
|
test:build
|
|
cd build/Release && cmake --build . && ctest
|
|
|
|
build:conan_install
|
|
cmake --preset conan-release .
|
|
|
|
conan_install:
|
|
conan install . -b missing
|