Skip to content

Commit

Permalink
add meson.build
Browse files Browse the repository at this point in the history
  • Loading branch information
lunatikub committed Nov 8, 2018
1 parent 63dcd72 commit 3acbcef
Showing 1 changed file with 14 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('jsmn', 'c')

jsmn_inc = include_directories('src')

jsmn_lib = static_library(
'scaljsmnparser',
'src/jsmn.c',
include_directories: jsmn_inc
)

jsmn_dep = declare_dependency(
link_with: jsmn_lib,
include_directories: jsmn_inc
)

0 comments on commit 3acbcef

Please sign in to comment.