Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

USR_INCLUDES defines the include directories to search for the header files that your app needs, like include directories for libraries you want to bake in.  For some reason, -I (dash eye) is not automatically prepended, so you need to preface the directory with -I, e.g. -II$(MY_LIB_INCLUDE).  Also, since you are adding include directories, you need to use +=.

...