Newer
Older
Import / applications / MakePDF / Version.h.in
@John Ryland John Ryland on 22 Dec 2020 500 bytes import NUC files
#!/bin/bash
cat << EOF
#ifndef VERSION_H
#define VERSION_H


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


#define APP_NAME          "${APP_NAME}"
#define APP_ICON          ":/images/images/icon.svg"
#define APP_VERSION       ${APP_VERSION}
#define APP_BUILD         ${APP_BUILD}
#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
EOF