Fixed issue where assets would not installed due to directory not being created

This commit is contained in:
David Allen 2022-07-30 09:34:21 -05:00
parent 2fd55de71e
commit 060d19bda4
10 changed files with 193 additions and 137 deletions

14
include/version.hpp Normal file
View file

@ -0,0 +1,14 @@
#pragma once
#include <string>
namespace gdpm::version{
struct version_context{
int major;
int minor;
int patch;
};
std::string to_string(const version_context& context);
version_context to_version(const std::string& version);
}