Can the flatbuffer compiler generate output that uses system-style #include
s?
#ifndef FLATBUFFERS_GENERATED_MYCLASS_MOBILECONFIG_H_
#define FLATBUFFERS_GENERATED_MYCLASS_MOBILECONFIG_H_
#include "flatbuffers/flatbuffers.h"
For use with my build system I'd prefer it if the above line read
#include <flatbuffers/flatbuffers.h>
But I don't see a flag for this anywhere.