mirror of
https://github.com/jorisvink/kore
synced 2025-03-10 04:59:02 -04:00
note that certain browsers change their caching behaviour when you are connecting over TLS using self-signed certificates. reminded by #179
23 lines
587 B
Plaintext
23 lines
587 B
Plaintext
# generic build config
|
|
# You can switch flavors using: kodev flavor [newflavor]
|
|
|
|
# The cflags below are shared between flavors
|
|
cflags=-Wall -Wmissing-declarations -Wshadow
|
|
cflags=-Wstrict-prototypes -Wmissing-prototypes
|
|
cflags=-Wpointer-arith -Wcast-qual -Wsign-compare
|
|
|
|
mime_add=jpg:image/jpg
|
|
mime_add=css:text/css; charset=utf-8
|
|
mime_add=html:text/html; charset=utf-8
|
|
|
|
dev {
|
|
# These cflags are added to the shared ones when
|
|
# you build the "dev" flavor.
|
|
cflags=-g
|
|
}
|
|
|
|
#prod {
|
|
# You can specify additional CFLAGS here which are only
|
|
# included if you build with the "prod" flavor.
|
|
#}
|