13 lines
383 B
Meson
13 lines
383 B
Meson
# Compile the resources into a C file
|
|
res = gnome.compile_resources(
|
|
'oskeyboard-resources',
|
|
'resources.xml',
|
|
source_dir: '.', # Look for .ui and .css in the current directory
|
|
)
|
|
|
|
executable('osk',
|
|
'main.c',
|
|
res, # Add the compiled resource file to the sources
|
|
dependencies : [gtk_dep, libevdev_dep, layer_shell_dep],
|
|
install : true)
|