mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-15 02:00:20 +00:00
LOTS of fixes to the VS solution
This commit is contained in:
@@ -76,13 +76,13 @@ main (int argc, char *argv[])
|
||||
{
|
||||
printf ("#define COMMA_VERSION %s\n", comma ());
|
||||
}
|
||||
else if (!strcmp (argv[1], "-a32")) /* xchat-wdk.iss/AppVerName */
|
||||
{
|
||||
printf ("AppVerName=XChat-WDK %s (x86)\n", PACKAGE_VERSION);
|
||||
}
|
||||
else if (!strcmp (argv[1], "-a64")) /* xchat-wdk.iss/AppVerName */
|
||||
else if (!strcmp (argv[1], "-a")) /* xchat-wdk.iss/AppVerName */
|
||||
{
|
||||
#ifdef _WIN64
|
||||
printf ("AppVerName=XChat-WDK %s (x64)\n", PACKAGE_VERSION);
|
||||
#else
|
||||
printf ("AppVerName=XChat-WDK %s (x86)\n", PACKAGE_VERSION);
|
||||
#endif
|
||||
}
|
||||
else if (!strcmp (argv[1], "-v")) /* xchat-wdk.iss/AppVersion */
|
||||
{
|
||||
@@ -92,13 +92,13 @@ main (int argc, char *argv[])
|
||||
{
|
||||
printf ("VersionInfoVersion=%s\n", point ());
|
||||
}
|
||||
else if (!strcmp (argv[1], "-o32")) /* xchat-wdk.iss/OutputBaseFilename */
|
||||
{
|
||||
printf ("OutputBaseFilename=XChat-WDK %s x86\n", PACKAGE_VERSION);
|
||||
}
|
||||
else if (!strcmp (argv[1], "-o64")) /* xchat-wdk.iss/OutputBaseFilename */
|
||||
else if (!strcmp (argv[1], "-o")) /* xchat-wdk.iss/OutputBaseFilename */
|
||||
{
|
||||
#ifdef _WIN64
|
||||
printf ("OutputBaseFilename=XChat-WDK %s x64\n", PACKAGE_VERSION);
|
||||
#else
|
||||
printf ("OutputBaseFilename=XChat-WDK %s x86\n", PACKAGE_VERSION);
|
||||
#endif
|
||||
}
|
||||
else if (!strcmp (argv[1], "-v")) /* version.txt */
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user