#ifndef VERSION_H
#define VERSION_H


#include "Utilities.h"
#include <string>
#include <cstdint>


#define APP_NAME          "Wicked Docs"
#define APP_ICON          ":/images/images/logo.svg"
#define APP_VERSION       1.00
#define APP_BUILD         0001
#define APP_VER_STR       YQ_STRINGIZE(APP_VERSION) "." YQ_STRINGIZE(APP_BUILD)
#define APP_VER_STR_LONG  "Version " YQ_STRINGIZE(APP_VERSION) ", Build " YQ_STRINGIZE(APP_BUILD)


#endif // VERSION_H
