/+junk/FLECS-Template

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/FLECS-Template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
project ('FLECS_test', 'c',
         default_options : ['c_std=c11'])

r = run_command ('./get_deps.sh')


deps = []

#FLECS
fl = subproject ('flecs')
fl_dep = dependency ('flecs', fallback : ['flecs', 'flecs_dep'])
deps += fl_dep


subdir ('src')

executable ('flecs_test',
  flecs_test_src,
  dependencies: deps
)