summaryrefslogtreecommitdiff
path: root/src/meson.build
blob: 187c79d109dbbfbcbcbdc252c182c3fd621b5dde (plain)
1
2
3
4
5
6
7
8
9
10
# 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,
)