Replies: 1 comment 1 reply
-
Create a new toolchain file or modify the current toolchain settings. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Packages can be considered system libraries and as such they should use the
-isystem
for gcc/clang instead of-I
. I encountered this because clang emits a certain warning inside SDL2 files which is not ideal. Adding the include directories with-isystem
would fix this, instead of-I
which is how they are currently specified.I'm using vcpkg as submodule with the CMake integration.
Is there any way to change this?
Beta Was this translation helpful? Give feedback.
All reactions