We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0779798 commit 7c7144bCopy full SHA for 7c7144b
src/arguments.cpp
@@ -36,6 +36,9 @@ const char *handle_args(int argc, char **argv) {
36
auto ret = cmkr::gen::generate_project(type.c_str());
37
if (ret)
38
return "Initialization failure!";
39
+ ret = cmkr::gen::generate_cmake(fs::current_path().string().c_str());
40
+ if (ret)
41
+ return "CMake generation error!";
42
return "Directory initialized!";
43
} else if (main_arg == "build") {
44
auto ret = build::run(argc, argv);
0 commit comments