initial
This commit is contained in:
commit
4e4b82e478
5 changed files with 607 additions and 0 deletions
15
meson.build
Normal file
15
meson.build
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
project('somebar', ['c', 'cpp'],
|
||||
default_options: ['cpp_std=c++17'])
|
||||
|
||||
wayland_dep = dependency('wayland-client')
|
||||
qt5 = import('qt5')
|
||||
qt5_dep = dependency('qt5', modules: ['Core', 'Widgets'])
|
||||
#moc = qt5.compile_moc(headers: [ 'src/.hpp', ])
|
||||
|
||||
subdir('protocols')
|
||||
|
||||
executable('somebar',
|
||||
'src/main.cpp',
|
||||
wayland_sources,
|
||||
#moc,
|
||||
dependencies: [qt5_dep, wayland_dep])
|
||||
Loading…
Add table
Add a link
Reference in a new issue