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.
17 lines
622 B
17 lines
622 B
project('megapixels', 'c') |
|
gtkdep = dependency('gtk+-3.0') |
|
|
|
cc = meson.get_compiler('c') |
|
libm = cc.find_library('m', required: false) |
|
|
|
executable('megapixels', 'main.c', 'ini.c', 'bayer.c', 'quickdebayer.c', dependencies : [gtkdep, libm], 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') |
|
|
|
install_data('org.postmarketos.Megapixels.svg', |
|
install_dir: join_paths(get_option('datadir'), 'icons/hicolor/scalable/apps') |
|
)
|
|
|