diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -8,10 +8,15 @@ ## Project Structure - `cmake`: CMake scripts consumed by the root `CMakeLists.txt`. -- `10-common`: Code that's compiled as a part of all targets. Check each target's build script for details. -- `20-codegen-compiler`: Code generator similar to Qt MOC. -- `20-codegen-runtime`: Code that's consumed along with output of `buildtools/codegen`. -- `30-game`: The main game. +- `brussel.common`: The "standard library" of this project, included on all targets. Check each target's build script for details. +- `brussel.engine`: Shared engine code, included on all targets. Not quite feeling "standard library", more specific to this project. +- `brussel.editor`: Shared editor code. Can be disabled on a release build. + - TODO: move the `Editor*.(hpp|cpp)` files from engine to here. + - `.common`: Vendored libraries. +- `brussel.codegen` + - `.comp`: Code generator similar to Qt MOC. + - `.rt`: Code that's consumed along with output of `brussel.codegen.comp`. +- `brussel.game`: The main game. - `assets`: The assets for the main game. # History |