mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2026-01-25 17:14:20 +00:00
14 lines
485 B
C
14 lines
485 B
C
/**
|
|
* @file src/version.h.in
|
|
* @brief Version definitions for Sunshine.
|
|
* @note The final `version.h` is generated from this file during the CMake build.
|
|
* @todo Use CMake definitions directly, instead of configuring this file.
|
|
*/
|
|
#pragma once
|
|
|
|
#define PROJECT_NAME "@PROJECT_NAME@"
|
|
#define PROJECT_VER "@PROJECT_VERSION@"
|
|
#define PROJECT_VER_MAJOR "@PROJECT_VERSION_MAJOR@"
|
|
#define PROJECT_VER_MINOR "@PROJECT_VERSION_MINOR@"
|
|
#define PROJECT_VER_PATCH "@PROJECT_VERSION_PATCH@"
|