Skip to content

Commit 6307675

Browse files
authored
fix: remove duplicate recipe source files (#143)
1 parent 6056028 commit 6307675

File tree

3 files changed

+4
-250
lines changed

3 files changed

+4
-250
lines changed

BUILD.bazel

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ ecsact_build_recipe(
6060
"https://raw.githubusercontent.com/skypjack/entt/v3.12.2/src/entt/entity/group.hpp",
6161
"https://raw.githubusercontent.com/skypjack/entt/v3.12.2/src/entt/entity/fwd.hpp",
6262
"https://raw.githubusercontent.com/skypjack/entt/v3.12.2/src/entt/entity/sparse_set.hpp",
63-
"https://raw.githubusercontent.com/skypjack/entt/v3.12.2/src/entt/entity/group.hpp",
64-
"https://raw.githubusercontent.com/skypjack/entt/v3.12.2/src/entt/entity/storage.hpp",
6563
"https://raw.githubusercontent.com/skypjack/entt/v3.12.2/src/entt/entity/component.hpp",
6664
"https://raw.githubusercontent.com/skypjack/entt/v3.12.2/src/entt/entity/mixin.hpp",
6765
"https://raw.githubusercontent.com/skypjack/entt/v3.12.2/src/entt/entity/view.hpp",
@@ -165,8 +163,6 @@ ecsact_build_recipe(
165163
],
166164
)
167165

168-
exports_files(["build_recipe.yml"])
169-
170166
ecsact_build_recipe_bundle(
171167
name = "ecsact_rt_entt",
172168
recipes = [":ecsact_rt_entt_recipe"],

build_recipe.yml

Lines changed: 0 additions & 242 deletions
This file was deleted.

test/BUILD.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cc_test(
1313
"//:runtime_test.ecsact",
1414
"@ecsact_cli",
1515
"@ecsact_lang_cpp//cpp_header_codegen:ecsact_cpp_header_codegen",
16-
"@ecsact_rt_entt//:build_recipe.yml",
16+
"@ecsact_rt_entt",
1717
"@ecsact_rt_entt//:headers",
1818
"@ecsact_rt_entt//rt_entt_codegen:ecsact_rt_entt_codegen",
1919
"@ecsact_rt_entt//runtime:sources",
@@ -23,7 +23,7 @@ cc_test(
2323
"//:runtime_test.ecsact",
2424
"@ecsact_cli",
2525
"@ecsact_lang_cpp//cpp_header_codegen:ecsact_cpp_header_codegen",
26-
"@ecsact_rt_entt//:build_recipe.yml",
26+
"@ecsact_rt_entt",
2727
"@ecsact_rt_entt//:headers",
2828
"@ecsact_rt_entt//rt_entt_codegen:ecsact_rt_entt_codegen",
2929
"@ecsact_rt_entt//runtime:sources",
@@ -33,14 +33,14 @@ cc_test(
3333
env = select({
3434
"@platforms//os:windows": {
3535
"ECSACT_CLI": "$(rootpath @ecsact_cli)",
36-
"ECSACT_RECIPE_PATH": "$(rootpath @ecsact_rt_entt//:build_recipe.yml)",
36+
"ECSACT_RECIPE_PATH": "$(rootpath @ecsact_rt_entt)",
3737
"ECSACT_RUNTIME_FILE_PATH": "$(rootpath //:runtime_test.ecsact)",
3838
"ECSACT_IMPORTED_FILE_PATH": "$(rootpath //:imported_pkg.ecsact)",
3939
"ECSACT_CODEGEN_PLUGIN_PATH": "$(rootpath @ecsact_rt_entt//rt_entt_codegen:ecsact_rt_entt_codegen)",
4040
},
4141
"//conditions:default": {
4242
"ECSACT_CLI": "$(rootpath @ecsact_cli)",
43-
"ECSACT_RECIPE_PATH": "$(rootpath @ecsact_rt_entt//:build_recipe.yml)",
43+
"ECSACT_RECIPE_PATH": "$(rootpath @ecsact_rt_entt)",
4444
"ECSACT_RUNTIME_FILE_PATH": "$(rootpath //:runtime_test.ecsact)",
4545
"ECSACT_IMPORTED_FILE_PATH": "$(rootpath //:imported_pkg.ecsact)",
4646
"ECSACT_CODEGEN_PLUGIN_PATH": "$(rootpath @ecsact_rt_entt//rt_entt_codegen:ecsact_rt_entt_codegen)",

0 commit comments

Comments
 (0)