v2 nearly done
This commit is contained in:
parent
5e1fcd8590
commit
f13671b2be
24 changed files with 1467 additions and 314 deletions
55
interfaces/Crafter.Build-External.cppm
Normal file
55
interfaces/Crafter.Build-External.cppm
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
Crafter® Build
|
||||
Copyright (C) 2026 Catcrafts®
|
||||
Catcrafts.net
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License version 3.0 as published by the Free Software Foundation;
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
export module Crafter.Build:External;
|
||||
import std;
|
||||
namespace fs = std::filesystem;
|
||||
|
||||
export namespace Crafter {
|
||||
struct GitSource {
|
||||
std::string url;
|
||||
std::string branch;
|
||||
std::string commit;
|
||||
};
|
||||
|
||||
enum class ExternalBuilder {
|
||||
None,
|
||||
CMake,
|
||||
};
|
||||
|
||||
struct ExternalDependency {
|
||||
std::string name;
|
||||
GitSource source;
|
||||
ExternalBuilder builder = ExternalBuilder::None;
|
||||
std::vector<std::string> options;
|
||||
std::vector<fs::path> includeDirs;
|
||||
std::vector<std::string> libs;
|
||||
};
|
||||
|
||||
struct ExternalBuildResult {
|
||||
std::string error;
|
||||
std::vector<std::string> compileFlags;
|
||||
std::vector<std::string> linkFlags;
|
||||
fs::file_time_type latestArtifact = fs::file_time_type::min();
|
||||
};
|
||||
|
||||
ExternalBuildResult BuildExternal(
|
||||
const ExternalDependency& dep,
|
||||
std::atomic<bool>& cancelled);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue