[linux vulkan] Remove linking directly with vulkan
Using volk means vulkan linking is done at runtime with the dl library.
This commit is contained in:
parent
271c91e115
commit
0380067105
|
@ -74,7 +74,6 @@ project("xenia-app")
|
||||||
"X11",
|
"X11",
|
||||||
"xcb",
|
"xcb",
|
||||||
"X11-xcb",
|
"X11-xcb",
|
||||||
"vulkan",
|
|
||||||
"SDL2",
|
"SDL2",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,6 @@ project("xenia-gpu-vulkan-trace-viewer")
|
||||||
"xcb",
|
"xcb",
|
||||||
"X11-xcb",
|
"X11-xcb",
|
||||||
"GL",
|
"GL",
|
||||||
"vulkan",
|
|
||||||
})
|
})
|
||||||
|
|
||||||
filter("platforms:Windows")
|
filter("platforms:Windows")
|
||||||
|
@ -142,7 +141,6 @@ project("xenia-gpu-vulkan-trace-dump")
|
||||||
"xcb",
|
"xcb",
|
||||||
"X11-xcb",
|
"X11-xcb",
|
||||||
"GL",
|
"GL",
|
||||||
"vulkan",
|
|
||||||
})
|
})
|
||||||
|
|
||||||
filter("platforms:Windows")
|
filter("platforms:Windows")
|
||||||
|
|
|
@ -57,5 +57,4 @@ project("xenia-ui-window-vulkan-demo")
|
||||||
"xcb",
|
"xcb",
|
||||||
"X11-xcb",
|
"X11-xcb",
|
||||||
"GL",
|
"GL",
|
||||||
"vulkan",
|
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue