gBar/example/meson.build
scorpion-26 c27912c8a5 Add Plugin system
Plugins are used to extend the functionality, without needing to poke around in
the original source code.
2023-01-28 15:08:12 +01:00

18 lines
374 B
Meson

project('gBarHelloWorld',
['cpp'],
version: '0.0.1',
license: 'MIT',
meson_version: '>=0.45.1',
default_options: ['c_std=c++17', 'warning_level=3'])
# Important!
gtk = dependency('gtk+-3.0')
gBar = dependency('gBar')
library(
'gBarHelloWorld',
['main.cpp'],
dependencies: [gBar],
install: true,
install_dir: 'lib/gBar/')