/+junk/FLECS-Template

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/FLECS-Template

« back to all changes in this revision

Viewing changes to meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2020-10-15 15:41:32 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20201015154132-0fx42ywmpp2cqctt
* Inital commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project ('FLECS_test', 'c',
 
2
         default_options : ['c_std=c11'])
 
3
 
 
4
r = run_command ('./get_deps.sh')
 
5
 
 
6
 
 
7
deps = []
 
8
 
 
9
#FLECS
 
10
fl = subproject ('flecs')
 
11
fl_dep = dependency ('flecs', fallback : ['flecs', 'flecs_dep'])
 
12
deps += fl_dep
 
13
 
 
14
 
 
15
subdir ('src')
 
16
 
 
17
executable ('flecs_test',
 
18
  flecs_test_src,
 
19
  dependencies: deps
 
20
)