diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-02 12:19:10 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-02 12:19:10 +0100 |
| commit | dc47af28f09705d28e9975867d7fad9a395f9163 (patch) | |
| tree | 5ae97b21542d2824c9c9d422ed1b4a25331fa1a2 /tools | |
| parent | a5b27673c29ca39b6b35bb0f5c4be224d7b41b5a (diff) | |
refactor(build): Centralize generated files and clean up project layout
- Task A: Centralized all generated code (assets, timeline) into a single directory to create a single source of truth.
- Task A: Isolated test asset generation into a temporary build directory, preventing pollution of the main source tree.
- Task B: Vertically compacted all C/C++ source files by removing superfluous newlines.
- Task C: Created a top-level README.md with project overview and file descriptions.
- Task D: Moved non-essential documentation into a directory to reduce root-level clutter.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/asset_packer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/asset_packer.cc b/tools/asset_packer.cc index 46934ce..2b90ecc 100644 --- a/tools/asset_packer.cc +++ b/tools/asset_packer.cc @@ -86,7 +86,7 @@ int main(int argc, char* argv[]) { assets_data_cc_file, "// This file is auto-generated by asset_packer.cc. Do not edit.\n\n"); fprintf(assets_data_cc_file, "#include \"util/asset_manager.h\"\n"); - fprintf(assets_data_cc_file, "#include \"generated/%s\"\n\n", + fprintf(assets_data_cc_file, "#include \"%s\"\n\n", generated_header_name.c_str()); // Forward declare procedural functions for AssetRecord initialization |
