|
|
|
#include "arguments.hpp"
|
|
|
|
#include "build.hpp"
|
|
|
|
#include "cmake_generator.hpp"
|
|
|
|
#include "help.hpp"
|
|
|
|
|
|
|
|
#include "fs.hpp"
|
|
|
|
#include <exception>
|
|
|
|
#include <iostream>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace cmkr {
|
|
|
|
namespace args {
|
|
|
|
const char *handle_args(int argc, char **argv) {
|
|
|
|
std::vector<std::string> args;
|
|
|
|
for (int i = 0; i < argc; ++i)
|
|
|
|
args.push_back(argv[i]);
|
|
|
|
|
|
|
|
if (args.size() < 2)
|
|
|
|
throw std::runtime_error(cmkr::help::message());
|
|
|
|
std::string main_arg = args[1];
|
|
|
|
if (main_arg == "gen") {
|
|
|
|
cmkr::gen::generate_cmake(fs::current_path().string().c_str());
|
|
|
|
return "CMake generation successful!";
|
|
|
|
} else if (main_arg == "help") {
|
|
|
|
return cmkr::help::message();
|
|
|
|
} else if (main_arg == "version") {
|
|
|
|
return cmkr::help::version();
|
|
|
|
} else if (main_arg == "init") {
|
|
|
|
std::string type = "executable";
|
|
|
|
if (args.size() > 2)
|
|
|
|
type = args[2];
|
|
|
|
cmkr::gen::generate_project(type.c_str());
|
|
|
|
cmkr::gen::generate_cmake(fs::current_path().string().c_str());
|
|
|
|
return "Directory initialized!";
|
|
|
|
} else if (main_arg == "build") {
|
|
|
|
auto ret = build::run(argc, argv);
|
|
|
|
if (ret)
|
|
|
|
throw std::runtime_error("CMake build failed!");
|
|
|
|
return "CMake build completed!";
|
|
|
|
} else if (main_arg == "install") {
|
|
|
|
auto ret = build::install();
|
|
|
|
if (ret)
|
|
|
|
throw std::runtime_error("CMake install failed!");
|
|
|
|
return "CMake install completed!";
|
|
|
|
} else if (main_arg == "clean") {
|
|
|
|
auto ret = build::clean();
|
|
|
|
if (ret)
|
|
|
|
throw std::runtime_error("CMake clean failed!");
|
|
|
|
return "Cleaned build directory!";
|
|
|
|
} else {
|
|
|
|
throw std::runtime_error(cmkr::help::message());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace args
|
|
|
|
} // namespace cmkr
|