diff options
Diffstat (limited to 'src/meson.build')
| -rw-r--r-- | src/meson.build | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/meson.build b/src/meson.build index a46993e..187c79d 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1,3 +1,10 @@ -# ggaze production sources. Populated from M0 onward (see docs/roadmap.md and -# docs/architecture.md for the module map). Phase 0 ships no sources yet — -# only the build/test/CI/convention harness, so `ninja` has no C targets here.
\ No newline at end of file +# ggaze executable. The app/window code lives in libggae (see meson.build); the +# executable only adds the entry point and the --version CLI option. + +ggaze_exe = executable('ggaze', + 'main.c', + include_directories : [inc, src_inc], + dependencies : ggaze_deps, + link_with : ggaze_lib, + install : true, +)
\ No newline at end of file |
