Skip to content
Snippets Groups Projects
Commit 5536e1b6 authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

Add vcpkg make targets

parent df28b9a7
Branches
Tags
2 merge requests!61Release 0.3.0,!53Add vcpkg support
......@@ -97,6 +97,16 @@ conan-build-debug:
conan build . -s $(CONAN_SETTINGS) -s build_type=Debug
vcpkg-install:
./vcpkg/bootstrap-vcpkg.sh
vcpkg/vcpkg install
vcpkg-build-release: vcpkg-install
mkdir -p build/build_tools\
&& cp vcpkg_installed/x64-linux/tools/grpc/grpc_cpp_plugin build/build_tools
cmake -S .. -B . -DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-linux -DCMAKE_BUILD_TYPE=Release
cmake --build .
ctest:
cd build/Debug && ctest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment