Sample code that prints a message from wren
This commit is contained in:
commit
257513e72a
6 changed files with 177 additions and 0 deletions
13
meson.build
Normal file
13
meson.build
Normal file
|
@ -0,0 +1,13 @@
|
|||
project('wrentest', 'cpp',
|
||||
version: '1.0.0',
|
||||
meson_version: '>=0.49.2',
|
||||
default_options: ['debug=true', 'cpp_std=c++17', 'b_ndebug=if-release'],
|
||||
)
|
||||
|
||||
wren_dep = dependency('wren', version: '>=0.2.0', fallback: ['wren', 'wren_dep'])
|
||||
|
||||
executable(meson.project_name(),
|
||||
'src/main.cpp',
|
||||
dependencies: [wren_dep],
|
||||
install: true,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue