Skip to content

Commit

Permalink
[all] fixes with ulib version and vcpkg version
Browse files Browse the repository at this point in the history
  • Loading branch information
k2rate committed Nov 29, 2024
1 parent 1644a5d commit 408bc9d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion buildkit/re/build/default_build_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

#include <fstream>

#include <magic_enum.hpp>
#include <magic_enum/magic_enum.hpp>
#include <unordered_set>

#include <futile/futile.h>
Expand Down
2 changes: 1 addition & 1 deletion buildkit/re/deps/re_package_dep_resolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <re/deps_version_cache.h>
#include <re/target.h>

#include <magic_enum.hpp>
#include <magic_enum/magic_enum.hpp>

namespace re
{
Expand Down
5 changes: 4 additions & 1 deletion buildkit/re/deps/vcpkg_dep_resolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,10 @@ namespace re
if (features->is_sequence())
for (auto feature : *features)
{
append_deps_from(vcpkg_json["features"][feature.scalar()]);
// fmt::print("features: \n{}\n", vcpkg_json["features"].dump());
// fmt::print("feature: \n{}\n", feature.dump());

append_deps_from(vcpkg_json["features"][feature.is_map() ? feature["name"].scalar() : feature.scalar()]);
}

package_target->root_path = target.root_path;
Expand Down
2 changes: 1 addition & 1 deletion buildkit/re/packages/re_package_client.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "re_package_client.h"
#include "re/packages/re_package_client.h"

#include <magic_enum.hpp>
#include <magic_enum/magic_enum.hpp>

#include <nlohmann/json.hpp>

Expand Down
2 changes: 1 addition & 1 deletion buildkit/re/target.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "target.h"

#include <magic_enum.hpp>
#include <magic_enum/magic_enum.hpp>

#include <fstream>
#include <re/fs.h>
Expand Down
4 changes: 2 additions & 2 deletions re-deps-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"github:k2rate/ulib-process^v1.0.2": "v1.0.3",
"github:k2rate/ulib-yaml-json^1.0.0": "v1.1.0",
"github:k2rate/ulib-yaml^1.0.0": "v1.0.2",
"github:k2rate/ulib^5.0.0": "v5.10.1",
"github:k2rate/ulib^5.0.1": "v5.10.1",
"github:k2rate/ulib^5.0.0": "v5.13.3",
"github:k2rate/ulib^5.0.1": "v5.13.3",
"github:osdeverr/futile^3.0.0": "v3.1.4",
"github:osdeverr/ulib-env^1.0.0": "v1.0.0"
}

0 comments on commit 408bc9d

Please sign in to comment.