mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 153bdbe591 | |||
| 97f1c5c1cc | |||
| 5b6d9c3826 | |||
| a90988b81a | |||
| 3a1298f4e8 | |||
| 534f955827 | |||
| ef537ce084 | |||
| 9cdd0f7344 | |||
| e69cf4d2b9 | |||
| e98a906231 | |||
| 9a82f8c796 | |||
| 13255c68cf | |||
| 5768460827 | |||
| 50d4a905b6 | |||
| f957cec2dc | |||
| 232e49e087 | |||
| 7408d42160 |
+1
-1
@@ -10,7 +10,7 @@ AlignTrailingComments: true
|
|||||||
AllowAllParametersOfDeclarationOnNextLine: true
|
AllowAllParametersOfDeclarationOnNextLine: true
|
||||||
AllowShortBlocksOnASingleLine: false
|
AllowShortBlocksOnASingleLine: false
|
||||||
AllowShortCaseLabelsOnASingleLine: false
|
AllowShortCaseLabelsOnASingleLine: false
|
||||||
AllowShortFunctionsOnASingleLine: true
|
AllowShortFunctionsOnASingleLine: false
|
||||||
AllowShortIfStatementsOnASingleLine: false
|
AllowShortIfStatementsOnASingleLine: false
|
||||||
AllowShortLoopsOnASingleLine: false
|
AllowShortLoopsOnASingleLine: false
|
||||||
AlwaysBreakAfterDefinitionReturnType: None
|
AlwaysBreakAfterDefinitionReturnType: None
|
||||||
|
|||||||
Generated
+1
-1
@@ -25,7 +25,7 @@ project(cmkr
|
|||||||
LANGUAGES
|
LANGUAGES
|
||||||
CXX
|
CXX
|
||||||
VERSION
|
VERSION
|
||||||
0.2.12
|
0.2.14
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
"CMakeLists generator from TOML"
|
"CMakeLists generator from TOML"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -70,3 +70,4 @@ arguments:
|
|||||||
- https://github.com/mpark/variant
|
- https://github.com/mpark/variant
|
||||||
- https://www.svgrepo.com/svg/192268/hammer
|
- https://www.svgrepo.com/svg/192268/hammer
|
||||||
- https://github.com/can1357 for buying `cmkr.build` ❤️
|
- https://github.com/can1357 for buying `cmkr.build` ❤️
|
||||||
|
- https://github.com/JustasMasiulis for fixing the dark theme ❤️
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ cmkr-include = false
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "cmkr"
|
name = "cmkr"
|
||||||
version = "0.2.12"
|
version = "0.2.14"
|
||||||
description = "CMakeLists generator from TOML"
|
description = "CMakeLists generator from TOML"
|
||||||
languages = ["CXX"]
|
languages = ["CXX"]
|
||||||
subdirs = ["third_party", "tests"]
|
subdirs = ["third_party", "tests"]
|
||||||
|
|||||||
+22
-5
@@ -2,7 +2,7 @@ include_guard()
|
|||||||
|
|
||||||
# Change these defaults to point to your infrastructure if desired
|
# Change these defaults to point to your infrastructure if desired
|
||||||
set(CMKR_REPO "https://github.com/build-cpp/cmkr" CACHE STRING "cmkr git repository" FORCE)
|
set(CMKR_REPO "https://github.com/build-cpp/cmkr" CACHE STRING "cmkr git repository" FORCE)
|
||||||
set(CMKR_TAG "v0.2.12" CACHE STRING "cmkr git tag (this needs to be available forever)" FORCE)
|
set(CMKR_TAG "v0.2.14" CACHE STRING "cmkr git tag (this needs to be available forever)" FORCE)
|
||||||
set(CMKR_COMMIT_HASH "" CACHE STRING "cmkr git commit hash (optional)" FORCE)
|
set(CMKR_COMMIT_HASH "" CACHE STRING "cmkr git commit hash (optional)" FORCE)
|
||||||
|
|
||||||
# To bootstrap/generate a cmkr project: cmake -P cmkr.cmake
|
# To bootstrap/generate a cmkr project: cmake -P cmkr.cmake
|
||||||
@@ -58,7 +58,7 @@ else()
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Use cached cmkr if found
|
# Use cached cmkr if found
|
||||||
if(DEFINED ENV{CMKR_CACHE} AND EXISTS "$ENV{CMKR_CACHE}")
|
if(DEFINED ENV{CMKR_CACHE})
|
||||||
set(CMKR_DIRECTORY_PREFIX "$ENV{CMKR_CACHE}")
|
set(CMKR_DIRECTORY_PREFIX "$ENV{CMKR_CACHE}")
|
||||||
string(REPLACE "\\" "/" CMKR_DIRECTORY_PREFIX "${CMKR_DIRECTORY_PREFIX}")
|
string(REPLACE "\\" "/" CMKR_DIRECTORY_PREFIX "${CMKR_DIRECTORY_PREFIX}")
|
||||||
if(NOT CMKR_DIRECTORY_PREFIX MATCHES "\\/$")
|
if(NOT CMKR_DIRECTORY_PREFIX MATCHES "\\/$")
|
||||||
@@ -72,10 +72,27 @@ endif()
|
|||||||
set(CMKR_DIRECTORY "${CMKR_DIRECTORY_PREFIX}${CMKR_TAG}")
|
set(CMKR_DIRECTORY "${CMKR_DIRECTORY_PREFIX}${CMKR_TAG}")
|
||||||
set(CMKR_CACHED_EXECUTABLE "${CMKR_DIRECTORY}/bin/${CMKR_EXECUTABLE_NAME}")
|
set(CMKR_CACHED_EXECUTABLE "${CMKR_DIRECTORY}/bin/${CMKR_EXECUTABLE_NAME}")
|
||||||
|
|
||||||
|
# Helper function to check if a string starts with a prefix
|
||||||
|
# Cannot use MATCHES, see: https://github.com/build-cpp/cmkr/issues/61
|
||||||
|
function(cmkr_startswith str prefix result)
|
||||||
|
string(LENGTH "${prefix}" prefix_length)
|
||||||
|
string(LENGTH "${str}" str_length)
|
||||||
|
if(prefix_length LESS_EQUAL str_length)
|
||||||
|
string(SUBSTRING "${str}" 0 ${prefix_length} str_prefix)
|
||||||
|
if(prefix STREQUAL str_prefix)
|
||||||
|
set("${result}" ON PARENT_SCOPE)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
set("${result}" OFF PARENT_SCOPE)
|
||||||
|
endfunction()
|
||||||
|
|
||||||
# Handle upgrading logic
|
# Handle upgrading logic
|
||||||
if(CMKR_EXECUTABLE AND NOT CMKR_CACHED_EXECUTABLE STREQUAL CMKR_EXECUTABLE)
|
if(CMKR_EXECUTABLE AND NOT CMKR_CACHED_EXECUTABLE STREQUAL CMKR_EXECUTABLE)
|
||||||
if(CMKR_EXECUTABLE MATCHES "^${CMAKE_CURRENT_BINARY_DIR}/_cmkr")
|
cmkr_startswith("${CMKR_EXECUTABLE}" "${CMAKE_CURRENT_BINARY_DIR}/_cmkr" CMKR_STARTSWITH_BUILD)
|
||||||
if(DEFINED ENV{CMKR_CACHE} AND EXISTS "$ENV{CMKR_CACHE}")
|
cmkr_startswith("${CMKR_EXECUTABLE}" "${CMKR_DIRECTORY_PREFIX}" CMKR_STARTSWITH_CACHE)
|
||||||
|
if(CMKR_STARTSWITH_BUILD)
|
||||||
|
if(DEFINED ENV{CMKR_CACHE})
|
||||||
message(AUTHOR_WARNING "[cmkr] Switching to cached cmkr: '${CMKR_CACHED_EXECUTABLE}'")
|
message(AUTHOR_WARNING "[cmkr] Switching to cached cmkr: '${CMKR_CACHED_EXECUTABLE}'")
|
||||||
if(EXISTS "${CMKR_CACHED_EXECUTABLE}")
|
if(EXISTS "${CMKR_CACHED_EXECUTABLE}")
|
||||||
set(CMKR_EXECUTABLE "${CMKR_CACHED_EXECUTABLE}" CACHE FILEPATH "Full path to cmkr executable" FORCE)
|
set(CMKR_EXECUTABLE "${CMKR_CACHED_EXECUTABLE}" CACHE FILEPATH "Full path to cmkr executable" FORCE)
|
||||||
@@ -86,7 +103,7 @@ if(CMKR_EXECUTABLE AND NOT CMKR_CACHED_EXECUTABLE STREQUAL CMKR_EXECUTABLE)
|
|||||||
message(AUTHOR_WARNING "[cmkr] Upgrading '${CMKR_EXECUTABLE}' to '${CMKR_CACHED_EXECUTABLE}'")
|
message(AUTHOR_WARNING "[cmkr] Upgrading '${CMKR_EXECUTABLE}' to '${CMKR_CACHED_EXECUTABLE}'")
|
||||||
unset(CMKR_EXECUTABLE CACHE)
|
unset(CMKR_EXECUTABLE CACHE)
|
||||||
endif()
|
endif()
|
||||||
elseif(DEFINED ENV{CMKR_CACHE} AND EXISTS "$ENV{CMKR_CACHE}" AND CMKR_EXECUTABLE MATCHES "^${CMKR_DIRECTORY_PREFIX}")
|
elseif(DEFINED ENV{CMKR_CACHE} AND CMKR_STARTSWITH_CACHE)
|
||||||
message(AUTHOR_WARNING "[cmkr] Upgrading cached '${CMKR_EXECUTABLE}' to '${CMKR_CACHED_EXECUTABLE}'")
|
message(AUTHOR_WARNING "[cmkr] Upgrading cached '${CMKR_EXECUTABLE}' to '${CMKR_CACHED_EXECUTABLE}'")
|
||||||
unset(CMKR_EXECUTABLE CACHE)
|
unset(CMKR_EXECUTABLE CACHE)
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
+4
-2
@@ -200,7 +200,9 @@ working-directory = "mytest-dir"
|
|||||||
condition = "mycondition"
|
condition = "mycondition"
|
||||||
targets = ["mytarget", "mytest"]
|
targets = ["mytarget", "mytest"]
|
||||||
destination = ["bin"]
|
destination = ["bin"]
|
||||||
|
component = "mycomponent"
|
||||||
files = ["content/my.png"]
|
files = ["content/my.png"]
|
||||||
dirs = [""]
|
dirs = ["include"]
|
||||||
configs = [""]
|
configs = ["Release", "Debug"]
|
||||||
|
optional = false
|
||||||
```
|
```
|
||||||
@@ -128,6 +128,7 @@ struct Install {
|
|||||||
std::vector<std::string> configs;
|
std::vector<std::string> configs;
|
||||||
std::string destination;
|
std::string destination;
|
||||||
std::string component;
|
std::string component;
|
||||||
|
bool optional = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Subdir {
|
struct Subdir {
|
||||||
|
|||||||
+43
-13
@@ -89,8 +89,24 @@ static void create_file(const fs::path &path, const std::string &contents) {
|
|||||||
ofs << contents;
|
ofs << contents;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CMake target name rules: https://cmake.org/cmake/help/latest/policy/CMP0037.html [A-Za-z0-9_.+\-]
|
||||||
|
// TOML bare keys: non-empty strings composed only of [A-Za-z0-9_-]
|
||||||
|
// We replace all non-TOML bare key characters with _
|
||||||
|
static std::string escape_project_name(const std::string &name) {
|
||||||
|
std::string escaped;
|
||||||
|
escaped.reserve(name.length());
|
||||||
|
for (auto ch : name) {
|
||||||
|
if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9') || ch == '_' || ch == '-') {
|
||||||
|
escaped += ch;
|
||||||
|
} else {
|
||||||
|
escaped += '_';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return escaped;
|
||||||
|
}
|
||||||
|
|
||||||
void generate_project(const std::string &type) {
|
void generate_project(const std::string &type) {
|
||||||
const auto name = fs::current_path().stem().string();
|
const auto name = escape_project_name(fs::current_path().stem().string());
|
||||||
if (fs::exists(fs::current_path() / "cmake.toml")) {
|
if (fs::exists(fs::current_path() / "cmake.toml")) {
|
||||||
throw std::runtime_error("Cannot initialize a project when cmake.toml already exists!");
|
throw std::runtime_error("Cannot initialize a project when cmake.toml already exists!");
|
||||||
}
|
}
|
||||||
@@ -126,13 +142,17 @@ void generate_project(const std::string &type) {
|
|||||||
|
|
||||||
struct CommandEndl {
|
struct CommandEndl {
|
||||||
std::stringstream &ss;
|
std::stringstream &ss;
|
||||||
CommandEndl(std::stringstream &ss) : ss(ss) {}
|
CommandEndl(std::stringstream &ss) : ss(ss) {
|
||||||
void endl() { ss << '\n'; }
|
}
|
||||||
|
void endl() {
|
||||||
|
ss << '\n';
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct RawArg {
|
struct RawArg {
|
||||||
RawArg() = default;
|
RawArg() = default;
|
||||||
RawArg(std::string arg) : arg(std::move(arg)) {}
|
RawArg(std::string arg) : arg(std::move(arg)) {
|
||||||
|
}
|
||||||
|
|
||||||
std::string arg;
|
std::string arg;
|
||||||
};
|
};
|
||||||
@@ -148,7 +168,8 @@ struct Command {
|
|||||||
std::string post_comment;
|
std::string post_comment;
|
||||||
|
|
||||||
Command(std::stringstream &ss, int depth, std::string command, std::string post_comment)
|
Command(std::stringstream &ss, int depth, std::string command, std::string post_comment)
|
||||||
: ss(ss), depth(depth), command(std::move(command)), post_comment(std::move(post_comment)) {}
|
: ss(ss), depth(depth), command(std::move(command)), post_comment(std::move(post_comment)) {
|
||||||
|
}
|
||||||
|
|
||||||
~Command() noexcept(false) {
|
~Command() noexcept(false) {
|
||||||
if (!generated) {
|
if (!generated) {
|
||||||
@@ -162,10 +183,11 @@ struct Command {
|
|||||||
return "\"\"";
|
return "\"\"";
|
||||||
}
|
}
|
||||||
// Don't quote arguments that don't need quoting
|
// Don't quote arguments that don't need quoting
|
||||||
if (str.find(' ') == std::string::npos && str.find('\"') == std::string::npos && str.find('/') == std::string::npos &&
|
// https://cmake.org/cmake/help/latest/manual/cmake-language.7.html#unquoted-argument
|
||||||
str.find(';') == std::string::npos) {
|
// NOTE: Normally '/' does not require quoting according to the documentation but this has been the case here
|
||||||
|
// previously, so for backwards compatibility its still here.
|
||||||
|
if (str.find_first_of("()#\"\\'> |/;") == str.npos)
|
||||||
return str;
|
return str;
|
||||||
}
|
|
||||||
std::string result;
|
std::string result;
|
||||||
result += "\"";
|
result += "\"";
|
||||||
for (char ch : str) {
|
for (char ch : str) {
|
||||||
@@ -316,7 +338,8 @@ static std::string tolf(const std::string &str) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct Generator {
|
struct Generator {
|
||||||
Generator(const parser::Project &project) : project(project) {}
|
Generator(const parser::Project &project) : project(project) {
|
||||||
|
}
|
||||||
Generator(const Generator &) = delete;
|
Generator(const Generator &) = delete;
|
||||||
|
|
||||||
const parser::Project &project;
|
const parser::Project &project;
|
||||||
@@ -342,7 +365,9 @@ struct Generator {
|
|||||||
return CommandEndl(ss);
|
return CommandEndl(ss);
|
||||||
}
|
}
|
||||||
|
|
||||||
void endl() { ss << '\n'; }
|
void endl() {
|
||||||
|
ss << '\n';
|
||||||
|
}
|
||||||
|
|
||||||
void inject_includes(const std::vector<std::string> &includes) {
|
void inject_includes(const std::vector<std::string> &includes) {
|
||||||
if (!includes.empty()) {
|
if (!includes.empty()) {
|
||||||
@@ -633,8 +658,12 @@ void generate_cmake(const char *path, const parser::Project *parent_project) {
|
|||||||
cmd("include")("FetchContent");
|
cmd("include")("FetchContent");
|
||||||
cmd("message")("STATUS", "Fetching vcpkg (" + version_name + ")...");
|
cmd("message")("STATUS", "Fetching vcpkg (" + version_name + ")...");
|
||||||
cmd("FetchContent_Declare")("vcpkg", "URL", url);
|
cmd("FetchContent_Declare")("vcpkg", "URL", url);
|
||||||
cmd("FetchContent_MakeAvailable")("vcpkg");
|
// Not using FetchContent_MakeAvailable here in case vcpkg adds CMakeLists.txt
|
||||||
cmd("include")("${vcpkg_SOURCE_DIR}/scripts/buildsystems/vcpkg.cmake");
|
cmd("FetchContent_GetProperties")("vcpkg");
|
||||||
|
cmd("if")("NOT", "vcpkg_POPULATED");
|
||||||
|
cmd("FetchContent_Populate")("vcpkg");
|
||||||
|
cmd("include")("${vcpkg_SOURCE_DIR}/scripts/buildsystems/vcpkg.cmake");
|
||||||
|
cmd("endif")();
|
||||||
cmd("endif")();
|
cmd("endif")();
|
||||||
endl();
|
endl();
|
||||||
// clang-format on
|
// clang-format on
|
||||||
@@ -1040,8 +1069,9 @@ void generate_cmake(const char *path, const parser::Project *parent_project) {
|
|||||||
component_name = inst.targets.front();
|
component_name = inst.targets.front();
|
||||||
}
|
}
|
||||||
auto component = std::make_pair("COMPONENT", component_name);
|
auto component = std::make_pair("COMPONENT", component_name);
|
||||||
|
auto optional = inst.optional ? "OPTIONAL" : "";
|
||||||
ConditionScope cs(gen, inst.condition);
|
ConditionScope cs(gen, inst.condition);
|
||||||
cmd("install")(targets, dirs, files, configs, destination, component);
|
cmd("install")(targets, dirs, files, configs, destination, component, optional);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+10
-4
@@ -1,15 +1,21 @@
|
|||||||
#include "error.hpp"
|
#include "error.hpp"
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
namespace cmkr {
|
namespace cmkr {
|
||||||
namespace error {
|
namespace error {
|
||||||
|
|
||||||
Status::Status(Code ec) noexcept : ec_(ec) {}
|
Status::Status(Code ec) noexcept : ec_(ec) {
|
||||||
|
}
|
||||||
|
|
||||||
Status::operator int() const noexcept { return static_cast<int>(ec_); }
|
Status::operator int() const noexcept {
|
||||||
|
return static_cast<int>(ec_);
|
||||||
|
}
|
||||||
|
|
||||||
Status::Code Status::code() const noexcept { return ec_; }
|
Status::Code Status::code() const noexcept {
|
||||||
|
return ec_;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace error
|
} // namespace error
|
||||||
} // namespace cmkr
|
} // namespace cmkr
|
||||||
@@ -20,6 +26,6 @@ static const char *err_string[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const char *cmkr_error_status(int i) {
|
const char *cmkr_error_status(int i) {
|
||||||
assert(i >= 0 && i < (sizeof(err_string) / sizeof(*(err_string))));
|
assert(i >= 0 && static_cast<size_t>(i) < (sizeof(err_string) / sizeof(*(err_string))));
|
||||||
return err_string[i];
|
return err_string[i];
|
||||||
}
|
}
|
||||||
|
|||||||
+9
-3
@@ -4,7 +4,9 @@
|
|||||||
namespace cmkr {
|
namespace cmkr {
|
||||||
namespace help {
|
namespace help {
|
||||||
|
|
||||||
const char *version() noexcept { return "cmkr version " CMKR_VERSION; }
|
const char *version() noexcept {
|
||||||
|
return "cmkr version " CMKR_VERSION;
|
||||||
|
}
|
||||||
|
|
||||||
const char *message() noexcept {
|
const char *message() noexcept {
|
||||||
return R"lit(
|
return R"lit(
|
||||||
@@ -22,6 +24,10 @@ arguments:
|
|||||||
} // namespace help
|
} // namespace help
|
||||||
} // namespace cmkr
|
} // namespace cmkr
|
||||||
|
|
||||||
const char *cmkr_help_version(void) { return cmkr::help::version(); }
|
const char *cmkr_help_version(void) {
|
||||||
|
return cmkr::help::version();
|
||||||
|
}
|
||||||
|
|
||||||
const char *cmkr_help_message(void) { return cmkr::help::message(); }
|
const char *cmkr_help_message(void) {
|
||||||
|
return cmkr::help::message();
|
||||||
|
}
|
||||||
+14
-5
@@ -54,8 +54,10 @@ class TomlChecker {
|
|||||||
tsl::ordered_set<toml::key> m_conditionVisited;
|
tsl::ordered_set<toml::key> m_conditionVisited;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TomlChecker(const TomlBasicValue &v, const toml::key &ky) : m_v(toml::find(v, ky)) {}
|
TomlChecker(const TomlBasicValue &v, const toml::key &ky) : m_v(toml::find(v, ky)) {
|
||||||
TomlChecker(const TomlBasicValue &v) : m_v(v) {}
|
}
|
||||||
|
TomlChecker(const TomlBasicValue &v) : m_v(v) {
|
||||||
|
}
|
||||||
TomlChecker(const TomlChecker &) = delete;
|
TomlChecker(const TomlChecker &) = delete;
|
||||||
TomlChecker(TomlChecker &&) = delete;
|
TomlChecker(TomlChecker &&) = delete;
|
||||||
|
|
||||||
@@ -109,9 +111,13 @@ class TomlChecker {
|
|||||||
return toml::find(m_v, ky);
|
return toml::find(m_v, ky);
|
||||||
}
|
}
|
||||||
|
|
||||||
void visit(const toml::key &ky) { m_visited.emplace(ky); }
|
void visit(const toml::key &ky) {
|
||||||
|
m_visited.emplace(ky);
|
||||||
|
}
|
||||||
|
|
||||||
bool visisted(const toml::key &ky) const { return m_visited.contains(ky); }
|
bool visisted(const toml::key &ky) const {
|
||||||
|
return m_visited.contains(ky);
|
||||||
|
}
|
||||||
|
|
||||||
void check(const tsl::ordered_map<std::string, std::string> &conditions) const {
|
void check(const tsl::ordered_map<std::string, std::string> &conditions) const {
|
||||||
for (const auto &itr : m_v.as_table()) {
|
for (const auto &itr : m_v.as_table()) {
|
||||||
@@ -152,7 +158,8 @@ class TomlCheckerRoot {
|
|||||||
bool m_checked = false;
|
bool m_checked = false;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TomlCheckerRoot(const TomlBasicValue &root) : m_root(root) {}
|
TomlCheckerRoot(const TomlBasicValue &root) : m_root(root) {
|
||||||
|
}
|
||||||
TomlCheckerRoot(const TomlCheckerRoot &) = delete;
|
TomlCheckerRoot(const TomlCheckerRoot &) = delete;
|
||||||
TomlCheckerRoot(TomlCheckerRoot &&) = delete;
|
TomlCheckerRoot(TomlCheckerRoot &&) = delete;
|
||||||
|
|
||||||
@@ -619,6 +626,7 @@ Project::Project(const Project *parent, const std::string &path, bool build) {
|
|||||||
i.optional("configs", inst.configs);
|
i.optional("configs", inst.configs);
|
||||||
i.required("destination", inst.destination);
|
i.required("destination", inst.destination);
|
||||||
i.optional("component", inst.component);
|
i.optional("component", inst.component);
|
||||||
|
i.optional("optional", inst.optional);
|
||||||
installs.push_back(inst);
|
installs.push_back(inst);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -627,6 +635,7 @@ Project::Project(const Project *parent, const std::string &path, bool build) {
|
|||||||
auto &v = checker.create(toml, "vcpkg");
|
auto &v = checker.create(toml, "vcpkg");
|
||||||
v.optional("url", vcpkg.url);
|
v.optional("url", vcpkg.url);
|
||||||
v.optional("version", vcpkg.version);
|
v.optional("version", vcpkg.version);
|
||||||
|
|
||||||
for (const auto &p : v.find("packages").as_array()) {
|
for (const auto &p : v.find("packages").as_array()) {
|
||||||
Vcpkg::Package package;
|
Vcpkg::Package package;
|
||||||
const auto &package_str = p.as_string().str;
|
const auto &package_str = p.as_string().str;
|
||||||
|
|||||||
Generated
+8
-8
@@ -14,7 +14,7 @@ add_test(
|
|||||||
WORKING_DIRECTORY
|
WORKING_DIRECTORY
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/basic"
|
"${CMAKE_CURRENT_LIST_DIR}/basic"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:cmkr>
|
"$<TARGET_FILE:cmkr>"
|
||||||
build
|
build
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@ add_test(
|
|||||||
WORKING_DIRECTORY
|
WORKING_DIRECTORY
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/interface"
|
"${CMAKE_CURRENT_LIST_DIR}/interface"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:cmkr>
|
"$<TARGET_FILE:cmkr>"
|
||||||
build
|
build
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ add_test(
|
|||||||
WORKING_DIRECTORY
|
WORKING_DIRECTORY
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/fetch-content"
|
"${CMAKE_CURRENT_LIST_DIR}/fetch-content"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:cmkr>
|
"$<TARGET_FILE:cmkr>"
|
||||||
build
|
build
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -44,7 +44,7 @@ add_test(
|
|||||||
WORKING_DIRECTORY
|
WORKING_DIRECTORY
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/conditions"
|
"${CMAKE_CURRENT_LIST_DIR}/conditions"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:cmkr>
|
"$<TARGET_FILE:cmkr>"
|
||||||
build
|
build
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ add_test(
|
|||||||
WORKING_DIRECTORY
|
WORKING_DIRECTORY
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg"
|
"${CMAKE_CURRENT_LIST_DIR}/vcpkg"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:cmkr>
|
"$<TARGET_FILE:cmkr>"
|
||||||
build
|
build
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -64,7 +64,7 @@ add_test(
|
|||||||
WORKING_DIRECTORY
|
WORKING_DIRECTORY
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/cxx-standard"
|
"${CMAKE_CURRENT_LIST_DIR}/cxx-standard"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:cmkr>
|
"$<TARGET_FILE:cmkr>"
|
||||||
build
|
build
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -74,7 +74,7 @@ add_test(
|
|||||||
WORKING_DIRECTORY
|
WORKING_DIRECTORY
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/globbing"
|
"${CMAKE_CURRENT_LIST_DIR}/globbing"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:cmkr>
|
"$<TARGET_FILE:cmkr>"
|
||||||
build
|
build
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ add_test(
|
|||||||
WORKING_DIRECTORY
|
WORKING_DIRECTORY
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/templates"
|
"${CMAKE_CURRENT_LIST_DIR}/templates"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:cmkr>
|
"$<TARGET_FILE:cmkr>"
|
||||||
build
|
build
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user