Add a unix main so program will compiler there too. It will output an
"only for windoze" message.
This commit is contained in:
parent
1d97b7542d
commit
535282bd23
1 changed files with 8 additions and 0 deletions
|
@ -107,5 +107,13 @@ int main(int argc, char **argv)
|
|||
|
||||
return(0);
|
||||
}
|
||||
#else
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
cout << "This program is intended to work with windoze\n";
|
||||
cout << "Other platforms can use mkdir\n";
|
||||
}
|
||||
|
||||
#endif // WIN32
|
||||
|
||||
|
|
Loading…
Reference in a new issue