Update boost-cmake (#252)

* update boost-cmake

* run cmake-format
This commit is contained in:
Lars Melchior
2021-05-18 15:29:52 +02:00
committed by GitHub
parent 7644c3a40f
commit de5551e42c
3 changed files with 6 additions and 10 deletions

View File

@@ -3,8 +3,8 @@
int main(int argc, char** argv) {
cxxopts::Options options("MyProgram", "One line description of MyProgram");
options.add_options()("h,help", "Show help")("d,debug", "Enable debugging")(
"f,file", "File name", cxxopts::value<std::string>());
options.add_options()("h,help", "Show help")(
"d,debug", "Enable debugging")("f,file", "File name", cxxopts::value<std::string>());
auto result = options.parse(argc, argv);