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

Fix vcpkg Makefile targets

parent 3c7a119a
No related branches found
No related tags found
2 merge requests!61Release 0.3.0,!53Add vcpkg support
...@@ -98,14 +98,15 @@ conan-build-debug: ...@@ -98,14 +98,15 @@ conan-build-debug:
vcpkg-install: vcpkg-install:
./vcpkg/bootstrap-vcpkg.sh ./vcpkg/bootstrap-vcpkg.sh\
vcpkg/vcpkg install &&vcpkg/vcpkg install
vcpkg-build-release: vcpkg-install vcpkg-build-release: vcpkg-install
mkdir -p build/build_tools\ mkdir -p build/build_tools\
&& cp vcpkg_installed/x64-linux/tools/grpc/grpc_cpp_plugin 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 && cd build\
cmake --build . && cmake -S .. -B . -DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-linux -DCMAKE_BUILD_TYPE=Release\
&& cmake --build .
ctest: ctest:
cd build/Debug && 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