mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 11:12:49 +00:00
19 lines
374 B
Meson
19 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/')
|