diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-22 19:48:21 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-22 19:48:21 +0100 |
commit | 66cab5910166470f2479a03c3a95d5591c6a3a9d (patch) | |
tree | 279da930afab4efee9f9df59ce5bfffa3046e0af | |
parent | e5488ec6f523decee12923f3a48000102b6ed489 (diff) |
Upgrade asl to 0.2.0
-rw-r--r-- | .bazelrc | 2 | ||||
-rw-r--r-- | MODULE.bazel | 8 | ||||
-rw-r--r-- | MODULE.bazel.lock | 3 | ||||
-rw-r--r-- | hk21/game/main.cpp | 2 |
4 files changed, 7 insertions, 8 deletions
@@ -1,6 +1,8 @@ common --registry=https://bcr.bazel.build
common --registry=https://git.stevenlr.com/460nm/bazel-registry.git/plain/
+build --enable_platform_specific_config
+
build:windows --extra_execution_platforms=//:x64_windows-clang-cl
# @Todo(bazel) We should be able to use @local_config_cc...
build:windows --extra_toolchains=@@rules_cc++cc_configure_extension+local_config_cc//:cc-toolchain-x64_windows-clang-cl
diff --git a/MODULE.bazel b/MODULE.bazel index e403421..2d05b12 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -16,10 +16,4 @@ git_override( )
bazel_dep(name = "sdl3_windows", version = "3.2.6")
-
-bazel_dep(name = "asl")
-git_override(
- module_name = "asl",
- commit = "54affafd86e2b7f387345c08e8c7285c775d75e5",
- remote = "https://git.stevenlr.com/460nm/asl.git/",
-)
+bazel_dep(name = "asl", version = "0.2.0")
diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index f849593..c232347 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -10,6 +10,7 @@ "https://bcr.bazel.build/modules/abseil-cpp/20230802.1/MODULE.bazel": "fa92e2eb41a04df73cdabeec37107316f7e5272650f81d6cc096418fe647b915", "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/MODULE.bazel": "37bcdb4440fbb61df6a1c296ae01b327f19e9bb521f9b8e26ec854b6f97309ed", "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/source.json": "9be551b8d4e3ef76875c0d744b5d6a504a27e3ae67bc6b28f46415fd2d2957da", + "https://bcr.bazel.build/modules/asl/0.2.0/MODULE.bazel": "not found", "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd", "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8", "https://bcr.bazel.build/modules/bazel_features/1.15.0/MODULE.bazel": "d38ff6e517149dc509406aca0db3ad1efdd890a85e049585b7234d04238e2a4d", @@ -139,6 +140,8 @@ "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/source.json": "2be409ac3c7601245958cd4fcdff4288be79ed23bd690b4b951f500d54ee6e7d", "https://bcr.bazel.build/modules/zlib/1.3.1/MODULE.bazel": "751c9940dcfe869f5f7274e1295422a34623555916eb98c174c1e945594bf198", "https://git.stevenlr.com/460nm/bazel-registry.git/plain/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", + "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/asl/0.2.0/MODULE.bazel": "775e336e3d816c5391274b261a7679237627fa120b32b46baea2914350a7b8a2", + "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/asl/0.2.0/source.json": "a8909690e489179b929fc0b2d13c2f419e6ebdf1f7bbb27111fe7a1e16eb23b6", "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/sdl3_windows/3.2.6/MODULE.bazel": "857507d99ce37f1a4cb331a7888cec8511f38b0bfd46adb55d1b70a9cbe4e86f", "https://git.stevenlr.com/460nm/bazel-registry.git/plain/modules/sdl3_windows/3.2.6/source.json": "5196961bbdfc230463ce7ea9049f7bab62b5ea7bccbfd376b85d07b2f909f98b" }, diff --git a/hk21/game/main.cpp b/hk21/game/main.cpp index 527235d..42b3b7a 100644 --- a/hk21/game/main.cpp +++ b/hk21/game/main.cpp @@ -22,7 +22,7 @@ int SDL_main(int /* argc */, char* /* argv */[]) ASL_LOG_ERROR("Couldn't initialize GPU: {}", gpu_opt);
return 1;
}
- auto gpu = ASL_MOVE(gpu_opt).value();
+ auto gpu = std::move(gpu_opt).value();
bool running = true;
while (running)
|