mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 03:02:49 +00:00
c27912c8a5
Plugins are used to extend the functionality, without needing to poke around in the original source code.
18 lines
374 B
Meson
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/')
|