Reorganization of files, refactors, doc updates (WIP)

Removing the gen. namespace from the files for components, dependencies, and file_processors.
They are only necessary if the include directory is transparent, and in my case those are not.

Made a docs directory. I'm offloading information from the main readme to there along with additional informationn I end up elaborating on down the line.
Enum tables were moved to their own directory (project/enums).

Library will not compile for now. Major refactor occuring with parsing related components.
This commit is contained in:
2023-07-29 05:52:06 -04:00
parent 31e1c38c18
commit c5afede7b5
68 changed files with 1077 additions and 888 deletions

View File

@ -1,4 +1,4 @@
#include "helpers/gen.push_ignores.inline.hpp"
#include "helpers/push_ignores.inline.hpp"
// ReSharper disable CppClangTidyClangDiagnosticSwitchEnum
@ -16,19 +16,19 @@
GEN_NS_BEGIN
#include "components/gen.data.cpp"
#include "components/static_data.cpp"
#include "components/gen.ast_case_macros.cpp"
#include "components/gen.ast.cpp"
#include "components/ast_case_macros.cpp"
#include "components/ast.cpp"
#include "components/gen.interface.cpp"
#include "components/gen.interface.upfront.cpp"
#include "components/gen.etoktype.cpp"
#include "components/gen.interface.parsing.cpp"
#include "components/gen.untyped.cpp"
#include "components/interface.cpp"
#include "components/interface.upfront.cpp"
#include "components/etoktype.cpp"
#include "components/interface.parsing.cpp"
#include "components/untyped.cpp"
#include "filesystem/gen.builder.cpp"
#include "file_proecessors/builder.cpp"
GEN_NS_END
#include "helpers/gen.pop_ignores.inline.hpp"
#include "helpers/pop_ignores.inline.hpp"