build.sh fix
This commit is contained in:
parent
d13bf354ab
commit
cf08a52f42
14 changed files with 86 additions and 82 deletions
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
Crafter.Build
|
||||
Copyright (C) 2024 Catcrafts
|
||||
Copyright (C) 2025 Catcrafts®
|
||||
Catcrafts.net
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
|
|
@ -8,7 +8,7 @@ modify it under the terms of the GNU Lesser General Public
|
|||
License as published by the Free Software Foundation; either
|
||||
version 3.0 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
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.
|
||||
|
|
@ -52,7 +52,7 @@ export namespace Crafter::Build {
|
|||
std::vector<Dependency> dependencies;
|
||||
std::unordered_map<std::string, nlohmann::json> additionalProperties;
|
||||
std::vector<std::string> flags;
|
||||
bool verbose;
|
||||
bool verbose = false;
|
||||
Configuration(std::string name, std::string standard, std::vector<fs::path> sourceFiles, std::vector<fs::path> moduleFiles, std::string optimizationLevel, std::string buildDir, std::string outputDir, std::string type, std::string target, std::string march, std::vector<Dependency> dependencies, std::vector<fs::path> additionalFiles, std::vector<std::string> flags, bool debug, std::vector<std::string> libs, std::vector<std::string> lib_paths, std::vector<fs::path> c_files, std::vector<Shader> shaderFiles, std::vector<std::string> includeDirs, bool verbose);
|
||||
Configuration(const nlohmann::json& configs, const nlohmann::json& config, fs::path workingDir);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue