Rename various options to match CMake's naming better and refactor

This commit is contained in:
Duncan Ogilvie
2020-11-30 20:09:15 +01:00
parent df41d3eaff
commit eaa5e62396
14 changed files with 195 additions and 180 deletions
+8 -8
View File
@@ -9,14 +9,14 @@ const char *message() noexcept {
return R"lit(
Usage: cmkr [arguments]
arguments:
init [exe|lib|shared|static|interface] Starts a new project in the same directory.
gen Generates CMakeLists.txt file.
build <extra cmake args> Run cmake and build.
install Run cmake --install. Needs admin privileges.
clean Clean the build directory.
help Show help.
version Current cmkr version.
)lit";
init [executable|library|shared|static|interface] Starts a new project in the same directory.
gen Generates CMakeLists.txt file.
build <extra cmake args> Run cmake and build.
install Run cmake --install. Needs admin privileges.
clean Clean the build directory.
help Show help.
version Current cmkr version.
)lit";
}
} // namespace help
} // namespace cmkr