Added version to single header

This commit is contained in:
Leonetienne 2021-12-06 03:52:18 +01:00
parent a538ac401c
commit c7ea6618f7
2 changed files with 6 additions and 1 deletions

View File

@ -75,6 +75,11 @@ namespace GhettoCipher
typedef std::string Flexblock; typedef std::string Flexblock;
} }
/*** ./../GhettoCrypt/Version.h ***/
#pragma once
#define GHETTOCRYPT_VERSION 0.1
/*** ./../GhettoCrypt/Config.h ***/ /*** ./../GhettoCrypt/Config.h ***/
#pragma once #pragma once

View File

@ -1,5 +1,5 @@
# Compile single-header # Compile single-header
deggl -i ../GhettoCrypt/*.cpp --out GhettoCrypt --loc --license-file ../LICENSE deggl -i ../GhettoCrypt/*.cpp ../GhettoCrypt/Version.h --out GhettoCrypt --loc --license-file ../LICENSE
# Verify that this builds cleanly via g++ # Verify that this builds cleanly via g++