-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
87d3265
commit 1585bd3
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
/* Copyright (c) 2020, Dyssol Development Team. All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */ | ||
/* Copyright (c) 2020, Dyssol Development Team. | ||
* Copyright (c) 2024, DyssolTEC GmbH. | ||
* All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */ | ||
|
||
#pragma once | ||
|
||
#include "BuildVersion.h" | ||
#include "DyssolHelperDefines.h" | ||
|
||
#define VERSION_0 1 | ||
#define VERSION_1 2 | ||
#define VERSION_1 3 | ||
#define VERSION_2 0 | ||
#define CURRENT_VERSION VERSION_0,VERSION_1,VERSION_2 | ||
#define CURRENT_VERSION_STR MACRO_TOSTRING(VERSION_0) "." MACRO_TOSTRING(VERSION_1) "." MACRO_TOSTRING(VERSION_2) |