kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

build.conf (981B)



      1 # ht 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=CURL=1
     10 
     11 # The flags 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 cxxflags=-Wall -Wmissing-declarations -Wshadow
     17 cxxflags=-Wpointer-arith -Wcast-qual -Wsign-compare
     18 
     19 # Mime types for assets served via the builtin asset_serve_*
     20 #mime_add=txt:text/plain; charset=utf-8
     21 #mime_add=png:image/png
     22 #mime_add=html:text/html; charset=utf-8
     23 
     24 dev {
     25 	# These flags are added to the shared ones when
     26 	# you build the "dev" flavor.
     27 	cflags=-g
     28 	cxxflags=-g
     29 }
     30 
     31 #prod {
     32 #	You can specify additional flags here which are only
     33 #	included if you build with the "prod" flavor.
     34 #}