mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2024-11-16 19:47:55 +01:00
Move example to its own directory
This commit is contained in:
parent
67549c6c9f
commit
3999474b32
3 changed files with 6 additions and 6 deletions
5
example/meson.build
Normal file
5
example/meson.build
Normal file
|
@ -0,0 +1,5 @@
|
|||
executable(
|
||||
'simple',
|
||||
files('simple.c'),
|
||||
dependencies: [liftoff],
|
||||
)
|
|
@ -44,12 +44,6 @@ liftoff = declare_dependency(
|
|||
dependencies: liftoff_deps,
|
||||
)
|
||||
|
||||
executable(
|
||||
'example',
|
||||
files('example.c'),
|
||||
dependencies: [liftoff],
|
||||
)
|
||||
|
||||
pkgconfig = import('pkgconfig')
|
||||
pkgconfig.generate(
|
||||
libraries: liftoff_lib,
|
||||
|
@ -59,4 +53,5 @@ pkgconfig.generate(
|
|||
description: 'Hardware composer library',
|
||||
)
|
||||
|
||||
subdir('example')
|
||||
subdir('test')
|
||||
|
|
Loading…
Reference in a new issue