python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to use vcpkg properly to use libraries?
I am new to CPP and I find the lack of proper package management quite cumbersome how can I use the library cpr with vcpkg?
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg....
user17243726
Votes: 0
Answers: 1
How to include non Vcpkg on CMakeLists.txt?
So I have a project which depends on opencv, which is installed with vcpkg. The project is build with cmake.
CMakeLists.txt
cmake_minimum_required(VERSION 3.19.1)
project(mylib)
set (CMAKE_CXX_STAND...
KcFnMi
Votes: 0
Answers: 1
How to include Vcpkg on CMakeLists.txt?
So I have a project which depends on opencv, which is installed with vcpkg. The project is build with cmake.
CMakeLists.txt
cmake_minimum_required(VERSION 3.19.1)
set(CMAKE_TOOLCHAIN_FILE ~/vcpkg/scr...
KcFnMi
Votes: 0
Answers: 3
The cmake output, how to make it more verbose?
While running cmake 3.21.1 (shipped with Qt online installer) on same project on macOS and Windows I get different output. Why? And how to make it more verbose on Windows?
CMakeLists.txt
cmake_minimum...
KcFnMi
Votes: 0
Answers: 0