11 lines
193 B
C++
11 lines
193 B
C++
#ifndef GPX2_VERSION_H
|
|
#define GPX2_VERSION_H
|
|
|
|
namespace GPX2_TDC::CMake::Version {
|
|
constexpr int major { 1 };
|
|
constexpr int minor { 0 };
|
|
constexpr int patch { 0 };
|
|
}
|
|
|
|
#endif // GPX2_VERSION_H
|