How can the platform keyword in vcpkg.json be made to recognize operating systems other than common ones like Windows, Linux, and Android? #39698
-
I added a new operating system called "myos" in the triplet, and the basic project build is working. However, when introducing third-party libraries and setting the platform keyword to "myos" in vcpkg.json, vcpkg does not recognize the required libraries and prompts that the keyword is not available. Is there a way to make the platform keyword in vcpkg.json recognize "myos"? |
Beta Was this translation helpful? Give feedback.
Answered by
autoantwort
Jul 9, 2024
Replies: 1 comment 3 replies
-
I think you can set |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
But afaik you have to set
set(VCPKG_DEP_INFO_OVERRIDE_VARS "!myos")
in the others triplet or you get an error that the identifiermyos
is not known.