dependent 'C:\vcpkg\installed\x64-windows\include\proj_api.h' does not exist.
-
Hi, i'm working on an old project, the project was working fine in 2021 but i have to install libraries to make it work on my computer : proj:x64-windows, proj4, gdal . There is my versions of those libraries :
gdal : 3.7.0#3
proj:x64-windows : 9.2.1
proj4:x64-windows : 5.2.0My problem is, my project require proj_api.h, but i dont have it with that version, and i can't get back to an older version with vcpkg.
I have the same problem with : gdal_i.lib.
I'm a total beginner on it, so i hope you understand my issue and you will be able to help me.
-
Hi, i'm working on an old project, the project was working fine in 2021 but i have to install libraries to make it work on my computer : proj:x64-windows, proj4, gdal . There is my versions of those libraries :
gdal : 3.7.0#3
proj:x64-windows : 9.2.1
proj4:x64-windows : 5.2.0My problem is, my project require proj_api.h, but i dont have it with that version, and i can't get back to an older version with vcpkg.
I have the same problem with : gdal_i.lib.
I'm a total beginner on it, so i hope you understand my issue and you will be able to help me.
Hi, this is not the best place to ask this as it has nothing to do with Qt.
i can't get back to an older version with vcpkg
If you're using vcpkg manifest you can specify a version of the library your app depends on: vcpkg versioning. If not then you need to point vcpkg to a repository that has the specific version you need.
-
Hi, this is not the best place to ask this as it has nothing to do with Qt.
i can't get back to an older version with vcpkg
If you're using vcpkg manifest you can specify a version of the library your app depends on: vcpkg versioning. If not then you need to point vcpkg to a repository that has the specific version you need.
@Chris-Kawa Hi, sorry for the post,
I tried to change version here, is that the manifest, but still nothing.
-
@Chris-Kawa Hi, sorry for the post,
I tried to change version here, is that the manifest, but still nothing.
@hutien That's not a vcpkg manifest. That's some sort of schema file of a package. Don't edit that. You're looking for a
vcpkg.json
file, but your project might not have one if you're using the classic mode of vcpkg and not the manifest mode. Read up on what they are and how to set them up in the documentation. -
@hutien That's not a vcpkg manifest. That's some sort of schema file of a package. Don't edit that. You're looking for a
vcpkg.json
file, but your project might not have one if you're using the classic mode of vcpkg and not the manifest mode. Read up on what they are and how to set them up in the documentation.@Chris-Kawa Thanks for this, i saw this page, but with this, i have to put all my lib in this file ? I'm not sure to understand how it works.