|
|
|
|
#include "project.hpp"
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Project::Base> Project::current;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Project::Base> Project::create(const boost::filesystem::path &file_path) { return nullptr; }
|
|
|
|
|
|
|
|
|
|
std::pair<std::string, std::string> Project::Base::get_run_arguments() {
|
|
|
|
|
return std::make_pair<std::string, std::string>("", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Project::Base::compile() {}
|
|
|
|
|
|
|
|
|
|
void Project::Base::compile_and_run(const boost::filesystem::path &file_path) {}
|
|
|
|
|
|
|
|
|
|
void Project::Base::recreate_build() {}
|
|
|
|
|
|
|
|
|
|
std::pair<std::string, std::string> Project::Base::debug_get_run_arguments() {
|
|
|
|
|
return std::make_pair<std::string, std::string>("", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Project::Base::debug_compile_and_start() {}
|
|
|
|
|
|
|
|
|
|
void Project::Base::debug_start(const std::string &command, const boost::filesystem::path &path, const std::string &remote_host) {}
|