We now build with -Werror compiler flag: this changes compiler warnings to errors. The motivation here is that if you start with this behavior, it is easier to keep warning free.
We now use -isystem rather than -I to add paths for dependencies like nan. This avoids compiler warnings for code outside of scope to change. Refs #39
This makes two changes to the default build:
-Werror
compiler flag: this changes compiler warnings to errors. The motivation here is that if you start with this behavior, it is easier to keep warning free.-isystem
rather than-I
to add paths for dependencies likenan
. This avoids compiler warnings for code outside of scope to change. Refs #39