Archived
1
Fork 0

Statically link to CoreGraphics and Metal on iOS

This commit is contained in:
Joshua Goins 2022-02-12 20:27:33 -05:00
parent e910425dc5
commit d1e4e1aff5

View file

@ -27,6 +27,8 @@ find_library(CFNETWORK CFNetwork)
find_library(SYSTEMCONFIGURATION SystemConfiguration)
find_library(GAMECONTROLLER GameController)
find_library(QUARTZ QuartzCore)
find_library(METAL Metal)
find_library(CORE_GRAPHICS CoreGraphics)
add_platform(
MAIN_FILE
@ -48,6 +50,8 @@ add_platform(
${SYSTEMCONFIGURATION}
${GAMECONTROLLER}
${QUARTZ}
${METAL}
${CORE_GRAPHICS}
GFXVulkan
COMPILE_OPTIONS
)