feat: Move all URL defines into a central location

This commit is contained in:
Ash Logan 2024-12-17 16:44:59 +11:00
commit 9e376f7839
7 changed files with 92 additions and 41 deletions

21
common/inkay_config.h Normal file
View file

@ -0,0 +1,21 @@
//
// Created by ash on 17/12/24.
//
#ifndef INKAY_INKAY_CONFIG_H
#define INKAY_INKAY_CONFIG_H
#ifdef __has_include
#if __has_include("inkay_config.local.h")
#include "inkay_config.local.h"
#define INKAY_CUSTOM 1
#endif
#endif
#ifndef NETWORK_BASEURL
#define NETWORK_BASEURL "pretendo.cc"
#endif
#endif //INKAY_INKAY_CONFIG_H