mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-13 01:10:05 +00:00
CPunch
6fb8aa9b8a
- keys can now be passed per-build passing -DLAIKA_PUBKEY=[pubkey] & -LAIKA_PRIVKEY=[pubkey] to `cmake -B` - if those definitions aren't passed, the default public & private key will be used (for quick testing)
13 lines
264 B
C
13 lines
264 B
C
#ifndef LAIKA_CONFIG_H
|
|
#define LAIKA_CONFIG_H
|
|
|
|
/* version info */
|
|
#define LAIKA_VERSION_MAJOR @LAIKA_VERSION_MAJOR@
|
|
#define LAIKA_VERSION_MINOR @LAIKA_VERSION_MINOR@
|
|
|
|
/* keys */
|
|
#define LAIKA_PUBKEY "@LAIKA_PUBKEY@"
|
|
#define LAIKA_PRIVKEY "@LAIKA_PRIVKEY@"
|
|
|
|
|
|
#endif |