Skip to content

Commit

Permalink
build: Simplified example meson
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikedPaladin committed Jul 22, 2023
1 parent d4d4737 commit 13e601e
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions example/meson.build
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
example_deps = [
dependency('gtk4'),
lib_dependency
]

example_sources = [
'main.vala',
]

executable(
'libflow-sample',

example_sources,
files('main.vala'),
vala_args: '--target-glib=2.58',
dependencies: example_deps
dependencies: [
dependency('gtk4'),
lib_dependency
]
)

0 comments on commit 13e601e

Please sign in to comment.