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 (596B)



      1 # cpp build config
      2 # You can switch flavors using: kodev flavor [newflavor]
      3 
      4 # The cflags below are shared between flavors
      5 cflags=-Wall -Wmissing-declarations -Wshadow
      6 cflags=-Wstrict-prototypes -Wmissing-prototypes
      7 cflags=-Wpointer-arith -Wcast-qual -Wsign-compare
      8 
      9 cxxflags=-Wall -Wmissing-declarations -Wshadow
     10 cxxflags=-Wpointer-arith -Wcast-qual -Wsign-compare
     11 
     12 dev {
     13 	# These cflags are added to the shared ones when
     14 	# you build the "dev" flavor.
     15 	cflags=-g
     16 	cxxflags=-g
     17 }
     18 
     19 #prod {
     20 #	You can specify additional CFLAGS here which are only
     21 #	included if you build with the "prod" flavor.
     22 #}