1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-21 09:39:41 +00:00

boost fix

This commit is contained in:
Marc Zinnschlag 2012-03-31 11:36:51 +02:00
parent 222f0e20bc
commit 6eb3281c4c

View file

@ -13,8 +13,8 @@ int main(int argc, char *argv[]) {
desc.add_options()
("help,h", "produce help message")
("verbose,v", "verbose output")
("ini,i", bpo::value<std::string>()->required(), "morrowind.ini file")
("cfg,c", bpo::value<std::string>()->required(), "openmw.cfg file")
("ini,i", bpo::value<std::string>(), "morrowind.ini file")
("cfg,c", bpo::value<std::string>(), "openmw.cfg file")
("output,o", bpo::value<std::string>()->default_value(""), "openmw.cfg file")
;
@ -71,5 +71,3 @@ int main(int argc, char *argv[]) {
return 0;
}