oops. I forgot to add prefix-config.cc to repo. Thank you, francesco!

JSON-127
Roker 2019-08-27 14:16:14 +02:00
parent 408f6cd7d2
commit 28c5dc759e
1 changed files with 11 additions and 0 deletions

11
server/prefix-config.cc Normal file
View File

@ -0,0 +1,11 @@
#include "prefix-config.hh"
// #define HTML_DIR via -D commandline / Makefile option
#ifndef HTML_DIR
#define HTML_DIR "../html"
#endif
#define STR(x) #x
const char* const html_directory = STR(HTML_DIR);