malcontent-control: Add initial skeleton application
This does nothing at the moment (not even showing a main window), but it soon will do. Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
parent
254eac4a55
commit
1d8f7d665c
7 changed files with 193 additions and 2 deletions
22
malcontent-control/meson.build
Normal file
22
malcontent-control/meson.build
Normal file
|
@ -0,0 +1,22 @@
|
|||
application_id = 'org.freedesktop.MalcontentControl'
|
||||
|
||||
malcontent_control = executable('malcontent-control',
|
||||
[
|
||||
'application.c',
|
||||
'application.h',
|
||||
'main.c',
|
||||
],
|
||||
dependencies: [
|
||||
dependency('gio-2.0', version: '>= 2.44'),
|
||||
dependency('glib-2.0', version: '>= 2.54.2'),
|
||||
dependency('gobject-2.0', version: '>= 2.54'),
|
||||
dependency('gtk+-3.0'),
|
||||
libmalcontent_dep,
|
||||
],
|
||||
include_directories: root_inc,
|
||||
install: true,
|
||||
)
|
||||
|
||||
# FIXME: Add icons and tests
|
||||
#subdir('icons')
|
||||
#subdir('tests')
|
Loading…
Add table
Add a link
Reference in a new issue