-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relocated version number definition into version.h file, added licens…
…e headers
- Loading branch information
Showing
2 changed files
with
30 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* MIT License | ||
* | ||
* Copyright (c) 2024, Mattias Aabmets | ||
* | ||
* The contents of this file are subject to the terms and conditions defined in the License. | ||
* You may not use, modify, or distribute this file except in compliance with the License. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
#ifndef VERSION_H | ||
#define VERSION_H | ||
|
||
#define PROGRAM_VERSION "1.0.1" | ||
|
||
#endif // VERSION_H |