Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
abeimler committed Feb 20, 2024
1 parent 9ef9c78 commit 0d90653
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
8 changes: 5 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cpmaddpackage(
GITHUB_REPOSITORY
aminya/project_options
VERSION
0.33.0
0.34.0
# GIT_TAG main
DOWNLOAD_ONLY)
if(project_options_ADDED)
Expand Down Expand Up @@ -66,12 +66,14 @@ include(cmake/ProjectOptions.cmake)
# see https://github.com/TheLartians/CPM.cmake for more info
include(cmake/CPM.cmake)
# PackageProject.cmake will be used to make our target installable
cpmaddpackage("gh:TheLartians/PackageProject.cmake@1.11.0")
# https://github.com/TheLartians/PackageProject.cmake
cpmaddpackage("gh:TheLartians/PackageProject.cmake@1.11.2")
# https://github.com/TheLartians/Format.cmake
cpmaddpackage(
NAME
Format.cmake
VERSION
1.7.3
1.8.1
GITHUB_REPOSITORY
TheLartians/Format.cmake
OPTIONS
Expand Down
18 changes: 9 additions & 9 deletions plot.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,54 +163,54 @@
"name": "EnTT",
"author": "@skypjack",
"description": "EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++.",
"version": "v3.12.2",
"version": "v3.13.1",
"link": "https://github.com/skypjack/entt"
},
"entt (runtime)": {
"name": "EnTT (runtime)",
"author": "@skypjack",
"description": "EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++.",
"version": "v3.12.2",
"version": "v3.13.1",
"link": "https://github.com/skypjack/entt",
"skip_candidate": true
},
"entt (group)": {
"name": "EnTT (group)",
"author": "@skypjack",
"description": "EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++.",
"version": "v3.12.2",
"version": "v3.13.1",
"link": "https://github.com/skypjack/entt",
"skip_candidate": true
},
"entt (group, non-owning)": {
"name": "EnTT (non-owning group)",
"author": "@skypjack",
"description": "EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++.",
"version": "v3.12.2",
"version": "v3.13.1",
"link": "https://github.com/skypjack/entt",
"skip_candidate": true
},
"entt (group, full-owning)": {
"name": "EnTT (full-owning group)",
"author": "@skypjack",
"description": "EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++.",
"version": "v3.12.2",
"version": "v3.13.1",
"link": "https://github.com/skypjack/entt",
"skip_candidate": true
},
"entt (group, partial-owning)": {
"name": "EnTT (partial-owning group)",
"author": "@skypjack",
"description": "EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++.",
"version": "v3.12.2",
"version": "v3.13.1",
"link": "https://github.com/skypjack/entt",
"skip_candidate": true
},
"entt (stable)": {
"name": "EnTT (stable)",
"author": "@skypjack",
"description": "EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++.",
"version": "v3.12.2",
"version": "v3.13.1",
"link": "https://github.com/skypjack/entt",
"skip_candidate": true
},
Expand All @@ -225,7 +225,7 @@
"name": "mustache",
"author": "@kirillochnev",
"description": "A fast, modern C++ Entity Component System",
"version": "0.2 (Apr 2023)",
"version": "0.2 (Feb 2024)",
"link": "https://github.com/kirillochnev/mustache"
},
"openecs": {
Expand All @@ -239,7 +239,7 @@
"name": "Flecs",
"author": "@SanderMertens",
"description": "Flecs is a fast and lightweight Entity Component System that lets you build games and simulations with millions of entities.",
"version": "v3.2.10",
"version": "v3.2.11",
"link": "https://github.com/SanderMertens/flecs"
},
"pico_ecs": {
Expand Down
2 changes: 1 addition & 1 deletion src/entt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cpmaddpackage(
NAME
EnTT
VERSION
3.12.2
3.13.1
GITHUB_REPOSITORY
skypjack/entt
OPTIONS
Expand Down
2 changes: 2 additions & 0 deletions src/entt/entt/entities/EntityFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@ void EntityFactory::destroyBulk(EntityManager& registry, std::vector<Entity>& en
registry.destroy(entities.begin(), entities.end());
}

/*
void EntityFactory::release(EntityManager& registry, Entity entity) {
registry.release(entity);
}
*/

} // namespace ecs::benchmarks::entt::entities
2 changes: 1 addition & 1 deletion src/entt/entt/entities/EntityFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class EntityFactory {
static void destroy(EntityManager& registry, Entity entity);
static void destroyBulk(EntityManager& registry, std::vector<Entity>& entities);

static void release(EntityManager& registry, Entity entity);
//static void release(EntityManager& registry, Entity entity);

[[nodiscard]] static inline auto getEntitiesCount(EntityManager& registry) {
return registry.storage<Entity>().size();
Expand Down
2 changes: 1 addition & 1 deletion src/flecs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cpmaddpackage(
NAME
flecs
VERSION
3.2.10
3.2.11
GITHUB_REPOSITORY
SanderMertens/flecs
OPTIONS
Expand Down

0 comments on commit 0d90653

Please sign in to comment.