Skip to content

Commit

Permalink
Add meson support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Ilmola committed Oct 19, 2018
1 parent 4fe7082 commit 154c1d1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
14 changes: 14 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
project(
'gml',
'cpp',
version : '0.1.0',
license : 'boost',
default_options : ['cpp_std=c++11']
)

gml_dep = declare_dependency(
include_directories : include_directories('include')
)

subdir('test')

5 changes: 5 additions & 0 deletions test/meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
test(
'gml-test',
executable('gml-test', ['test.cpp'], dependencies: [gml_dep])
)

0 comments on commit 154c1d1

Please sign in to comment.