I would like to make my header file header.h
be able to be included like this: #include <header.h>
in every location.
I'm using XCode on macOS.
I would like to make my header file header.h
be able to be included like this: #include <header.h>
in every location.
I'm using XCode on macOS.
For Xcode you will want to add the path containing the headers to SYSTEM_HEADER_SEARCH_PATHS (or "System Header Search Paths") either in yout Xcconfig or Xproj file. However it is porbably better to just user User header paths and #include "header.h"
cause using angle brackets is usually meant for system headers so using them for user header files could be confusing.