build.conf (711B)
1 # nohttp build config
2 # You can switch flavors using: kodev flavor [newflavor]
3
4 # Set to yes if you wish to produce a single binary instead
5 # of a dynamic library. If you set this to yes you must also
6 # set kore_source together with kore_flavor.
7 single_binary=yes
8 kore_source=../../
9 kore_flavor=NOHTTP=1
10
11 # The cflags below are shared between flavors
12 cflags=-Wall -Wmissing-declarations -Wshadow
13 cflags=-Wstrict-prototypes -Wmissing-prototypes
14 cflags=-Wpointer-arith -Wcast-qual -Wsign-compare
15
16 dev {
17 # These cflags are added to the shared ones when
18 # you build the "dev" flavor.
19 cflags=-g
20 }
21
22 #prod {
23 # You can specify additional CFLAGS here which are only
24 # included if you build with the "prod" flavor.
25 #}