You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
389 B
9 lines
389 B
project('megapixels', 'c') |
|
gtkdep = dependency('gtk+-3.0') |
|
executable('megapixels', 'main.c', 'ini.c', 'bayer.c', dependencies : gtkdep, install : true) |
|
|
|
install_data(['camera.glade', 'camera.css'], |
|
install_dir : get_option('datadir') / 'megapixels/ui') |
|
|
|
install_data(['org.postmarketos.Megapixels.desktop'], |
|
install_dir : get_option('datadir') / 'applications')
|
|
|