You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
208 B
C++
12 lines
208 B
C++
4 years ago
|
#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);
|