blog

The tiny blog platform powering https://blog.kore.io
Commits | Files | Refs | README | git clone https://git.kore.io/kore-blog.git

build.conf (668B)



      1 # blog 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=/Users/joris/src/kore
      9 kore_flavor=NOTLS=1
     10 
     11 # The flags below are shared between flavors
     12 cflags=-std=c99 -pedantic -O3
     13 cflags=-Wall -Wmissing-declarations -Wshadow
     14 cflags=-Wstrict-prototypes -Wmissing-prototypes
     15 cflags=-Wpointer-arith -Wcast-qual -Wsign-compare
     16 
     17 mime_add=png:image/png
     18 mime_add=css:text/css
     19 mime_add=html:text/html; charset=utf-8
     20 
     21 ldflags=-lsodium
     22 
     23 dev {
     24 	cflags=-g
     25 }
     26 
     27 prod {
     28 }