11 lines
223 B
Python
11 lines
223 B
Python
|
cc_library(
|
||
|
name = "sdl",
|
||
|
srcs = [
|
||
|
"x64_windows/SDL2.dll",
|
||
|
"x64_windows/SDL2.lib",
|
||
|
"x64_windows/SDL2main.lib",
|
||
|
],
|
||
|
hdrs = glob(["include/*.h"]),
|
||
|
visibility = ["//main:__pkg__"],
|
||
|
)
|