File tree Expand file tree Collapse file tree 2 files changed +5
-14
lines changed
Expand file tree Collapse file tree 2 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -33,17 +33,6 @@ use_repo(
3333 "ecsact_unreal_codegen_win64" ,
3434)
3535
36- # local_path_override(
37- # module_name = "ecsact_unreal_codegen",
38- # path = "../ecsact_unreal/Tools/EcsactUnrealCodegen",
39- # )
40- # git_override(
41- # module_name = "ecsact_unreal_codegen",
42- # commit = "1a2c65d45a9a697bbbe61c643ff7926ad28243be",
43- # remote = "git@github.com:ecsact-dev/ecsact_unreal.git",
44- # strip_prefix = "Tools/EcsactUnrealCodegen",
45- # )
46-
4736bazel_dep (name = "toolchains_llvm" , version = "1.2.0" , dev_dependency = True )
4837bazel_dep (name = "hedron_compile_commands" , dev_dependency = True )
4938
Original file line number Diff line number Diff line change 11load ("@bazel_tools//tools/build_defs/repo:http.bzl" , "http_file" )
22
3+ ECSACT_UNREAL_VERSION = "0.2.2"
4+
35def _prebuilt_tools (mctx ):
46 http_file (
57 name = "ecsact_unreal_codegen_win64" ,
68 downloaded_file_path = "EcsactUnrealCodegen.exe" ,
79 executable = True ,
8- url = "https://github.com/ecsact-dev/ecsact_unreal/releases/download/0.2.1 /EcsactUnrealCodegen-Win64.exe" ,
9- integrity = "sha256-HIra76wJlgsBAR+Oaj90INFCYLIS3QyPSWDDhvqUFCo =" ,
10+ url = "https://github.com/ecsact-dev/ecsact_unreal/releases/download/{} /EcsactUnrealCodegen-Win64.exe" . format ( ECSACT_UNREAL_VERSION ) ,
11+ integrity = "sha256-ynFQTRdnN4k7s3t2Z3dJ2fnxoQ8hV/P5y2cvgRMvxSg =" ,
1012 )
1113 http_file (
1214 name = "ecsact_unreal_codegen_linux" ,
1315 downloaded_file_path = "EcsactUnrealCodegen" ,
1416 executable = True ,
15- url = "https://github.com/ecsact-dev/ecsact_unreal/releases/download/0.2.1 /EcsactUnrealCodegen-Linux" ,
17+ url = "https://github.com/ecsact-dev/ecsact_unreal/releases/download/{} /EcsactUnrealCodegen-Linux" . format ( ECSACT_UNREAL_VERSION ) ,
1618 integrity = "sha256-nwcXevEQn1RJrm/7/Nq+HtR3nBLMbhlovfPSgXR923A=" ,
1719 )
1820
You can’t perform that action at this time.
0 commit comments