Skip to content

Commit 44d80bc

Browse files
Add stubbed version headers
1 parent bb4ecbd commit 44d80bc

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

include/Version.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/***
2+
* This header is a stub, usually it's generated by cmake at when configuring the project.
3+
*/
4+
5+
#pragma once
6+
7+
#define THUNDER_VERSION 5

include/version/version.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/***
2+
* This header is a stub, usually it's generated by cmake at when configuring the project.
3+
*/
4+
5+
#pragma once
6+
7+
namespace Thunder
8+
{
9+
namespace PluginHost {
10+
static constexpr uint8_t Major = 5;
11+
static constexpr uint8_t Minor = 0;
12+
static constexpr uint8_t Patch = 0;
13+
}
14+
}

0 commit comments

Comments
 (0)