build.conf 1012 B

1234567891011121314151617181920212223242526272829303132333435
  1. # jsonrtc build config
  2. # You can switch flavors using: kodev flavor [newflavor]
  3. # Set to yes if you wish to produce a single binary instead
  4. # of a dynamic library. If you set this to yes you must also
  5. # set kore_source together with kore_flavor.
  6. #single_binary=no
  7. #kore_source=/home/joris/src/kore
  8. #kore_flavor=
  9. # The flags below are shared between flavors
  10. cflags=-Wall -Wmissing-declarations -Wshadow
  11. cflags=-Wstrict-prototypes -Wmissing-prototypes
  12. cflags=-Wpointer-arith -Wcast-qual -Wsign-compare
  13. cxxflags=-Wall -Wmissing-declarations -Wshadow
  14. cxxflags=-Wpointer-arith -Wcast-qual -Wsign-compare
  15. ldflags=-lcjson
  16. # Mime types for assets served via the builtin asset_serve_*
  17. #mime_add=txt:text/plain; charset=utf-8
  18. #mime_add=png:image/png
  19. #mime_add=html:text/html; charset=utf-8
  20. dev {
  21. # These flags are added to the shared ones when
  22. # you build the "dev" flavor.
  23. cflags=-g
  24. cxxflags=-g
  25. }
  26. #prod {
  27. # You can specify additional flags here which are only
  28. # included if you build with the "prod" flavor.
  29. #}