1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

sokol: add support for compiling with -d darwin_sokol_glcore33 on macos (#13885)

This commit is contained in:
R cqls 2022-03-31 15:52:21 +02:00 committed by GitHub
parent fb5df9665e
commit 5c43493183
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,8 +13,12 @@ pub const (
#flag windows -lgdi32 #flag windows -lgdi32
// METAL // METAL
$if macos { $if macos {
#flag -DSOKOL_METAL $if darwin_sokol_glcore33 ? {
#flag -framework Metal -framework Cocoa -framework MetalKit -framework QuartzCore #flag darwin -DSOKOL_GLCORE33 -framework OpenGL -framework Cocoa -framework QuartzCore
} $else {
#flag -DSOKOL_METAL
#flag -framework Metal -framework Cocoa -framework MetalKit -framework QuartzCore
}
} }
$if ios { $if ios {
#flag -DSOKOL_METAL #flag -DSOKOL_METAL