24 lines
529 B
Python
24 lines
529 B
Python
# Copyright 2025 Steven Le Rouzic
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
cc_binary(
|
|
name = "game",
|
|
srcs = [
|
|
"main.cpp",
|
|
"gpu.cpp",
|
|
"gpu.hpp",
|
|
],
|
|
deps = [
|
|
"@asl//asl/base",
|
|
"@asl//asl/logging",
|
|
"@asl//asl/types:status",
|
|
"@asl//asl/types:box",
|
|
"@asl//asl/types:option",
|
|
"@asl//asl/containers:buffer",
|
|
"@sdl3_windows//:sdl3",
|
|
"//hk21/vulkan_loader",
|
|
],
|
|
applicable_licenses = ["//:license"],
|
|
)
|