Replies: 4 comments 2 replies
-
Hey @perdrix52, I've taken a look at the situation. The problem is quite generic, you may follow the following to see if it helps:
Just follow these steps, and you should be good to go. If you’re still hitting walls, let me know what errors you’re seeing, and we’ll dig deeper! Hope it helps mate :) |
Beta Was this translation helpful? Give feedback.
-
Without the full minimal example, you hide potential problems and invite generic answers such as #42591 (comment). Trying to be a little bit more specific: It can be observed that manifest mode is invoked for x64-windows-static-md, so CMake integration seems to be okay, and no further step should be needed to make Does your CMake project contain other commands interfering with The usage output for boost-container is different from what I see here for 1.86. You can try to put this before the failing
|
Beta Was this translation helpful? Give feedback.
-
To add to that there's stuff in "D:\Github\DSS\out\build\Qt-Debug-Windows\vcpkg_installed\x64-windows-static-md\share\boost_container\boost_container-config.cmake" but its not looked there quite clearly. |
Beta Was this translation helpful? Give feedback.
-
I found the problem I was setting CMAKE_PREFIX_PATH in the top level file and that was overwriting what vcpkg has set it to. |
Beta Was this translation helpful? Give feedback.
-
I'm trying to build using CMake after successfully building my project using MSBUILD with a vcpkg.json that specifies:
So I changed my top level CMakeLists.txt file and added:
This reported:
but when it reached the line
find_package(boost_container CONFIG REQUIRED)
it failed saying:Given that I don't know where the install step placed the relevant files, how to solve this?
I suspect I will hit this for all the dependencies listed in my vcpkg.json file :(
Help please!
Beta Was this translation helpful? Give feedback.
All reactions