bzr branch
http://gegoxaren.bato24.eu/bzr/%2Bjunk/FLECS-Template
1
by Gustav Hartvigsson
* Inital commit |
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 |
)
|