#!/bin/bash cat << EOF #ifndef VERSION_H #define VERSION_H #include "Utilities.h" #include #include #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