friseb123@16: #include friseb123@16: #include "version.h" friseb123@16: main(int argv,char** argc) friseb123@16: { friseb123@16: if (argv<=1) friseb123@16: { friseb123@16: printf("%s\n",VERSION); friseb123@16: } friseb123@16: else if (strcmp(argc[1],"dos")==0) friseb123@16: { friseb123@16: printf("set MUI_VERSION=\"%s\"\n",VERSION); friseb123@16: } friseb123@16: else if (strcmp(argc[1],"nsis")==0) friseb123@16: { friseb123@22: printf("!define MUI_VERSION \"%s\"\n",VERSION); friseb123@16: } friseb123@16: else if (strcmp(argc[1],"unix")==0) friseb123@16: { friseb123@16: printf("#define MUI_VERSION=\"%s\"\n",VERSION); friseb123@16: } friseb123@16: }