diff options
| -rw-r--r-- | icespider/compile/main.cpp | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/icespider/compile/main.cpp b/icespider/compile/main.cpp index 804141b..5796bae 100644 --- a/icespider/compile/main.cpp +++ b/icespider/compile/main.cpp @@ -10,9 +10,14 @@ main(int c, char ** v)  	IceSpider::Compile::RouteCompiler rc;  	std::filesystem::path input, output;  	po::options_description opts("IceSpider compile options"); -	opts.add_options()("input", po::value(&input), "Input .json file")("output", po::value(&output), -			"Output .cpp file")("include,I", po::value(&rc.searchPath)->composing(), "Search path")( -			"help,h", po::value(&showHelp)->default_value(false)->zero_tokens(), "Help"); +	// clang-format off +	opts.add_options() +		("input", po::value(&input), "Input .json file") +		("output", po::value(&output), "Output .cpp file") +		("include,I", po::value(&rc.searchPath)->composing(), "Search path") +		("help,h", po::value(&showHelp)->default_value(false)->zero_tokens(), "Help") +		; +	// clang-format on  	po::positional_options_description pod;  	pod.add("input", 1).add("output", 2);  	po::variables_map vm;  | 
