mirror of
https://github.com/ToshioCP/Gtk4-tutorial.git
synced 2025-01-12 20:03:28 +01:00
10 lines
294 B
Meson
10 lines
294 B
Meson
project('tfe', 'c')
|
|
|
|
gtkdep = dependency('gtk4')
|
|
|
|
gnome=import('gnome')
|
|
resources = gnome.compile_resources('resources','tfe.gresource.xml')
|
|
|
|
sourcefiles=files('tfeapplication.c', 'tfenotebook.c', '../tfetextview/tfetextview.c')
|
|
|
|
executable('tfe', sourcefiles, resources, dependencies: gtkdep)
|