I added URHO3D_AUTOMATIC_FLAGSET to the doxygen EXPAND_AS_DEFINED list because it was appearing in the c++ output for me, preventing the code from compiling
Added the "extra" #undef stuff for Connection
I tried to replace some uses of forward slashes by path.join, in order to, hopefully, work on both platforms
There are some local changes I haven't added to the repo, like, in lines ~1205 and ~1363 of the generator, there are those h=path.join('generated',f'BindFunctions_{nsu}.h'), which get added directly to the headers in the next line. I had to remove the "generated/" part of the include to make them work here.
Here's the PR!
There are some local changes I haven't added to the repo, like, in lines ~1205 and ~1363 of the generator, there are those
h=path.join('generated',f'BindFunctions_{nsu}.h')
, which get added directly to the headers in the next line. I had to remove the "generated/" part of the include to make them work here.