18 lines
466 B
C
18 lines
466 B
C
// clang-format off
|
|
|
|
/* Configurations */
|
|
|
|
#define PROJECT_NAME "@PROJECT_NAME@"
|
|
#define VERSION_MAJOR @VERSION_MAJOR@
|
|
#define VERSION_MINOR @VERSION_MINOR@
|
|
|
|
// Database configuration
|
|
#define DATABASE_NAME "@DATABASE_NAME@"
|
|
#define DATABASE_DRIVER "@DATABASE_DRIVER@"
|
|
// #define DATABASE_HOST "@DATABASE_HOST@"
|
|
// #define DATABASE_PORT @DATABASE_PORT@
|
|
// #define DATABASE_USER "@DATABASE_USER@"
|
|
// #define DATABASE_PASSWORD "@DATABASE_PASSWORD@"
|
|
|
|
// clang-format on
|