Currently we have had some compiler flags added to the global parent project scope which are applied to all projects, gfx being one of them. However this means gfx doesnt have them on its own so I added them here.
Key additions:
specified an default language version (set to c++14; but can easily be changed and only locally effects gfx) This provides a default but it can still be overridden by global scope
Added the USE_PIX flag directly to gfx so PIX markers are always compiled in.
Added exception disabling??? Not sure about this but Capsaicin had it at parent scope so I propagated it down but only to gfx (as some of the deps actually require exceptions internally)
Currently we have had some compiler flags added to the global parent project scope which are applied to all projects, gfx being one of them. However this means gfx doesnt have them on its own so I added them here.
Key additions: