mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 19:32:44 +01:00
- remove setcap and wrapper - system vulkan - disable wayland - disable march=native (sse4.1 base now instead of avx)
22 lines
556 B
Diff
22 lines
556 B
Diff
--- a/cmake/SearchForStuff.cmake
|
|
+++ b/cmake/SearchForStuff.cmake
|
|
@@ -249,7 +249,6 @@ add_subdirectory(3rdparty/imgui EXCLUDE_FROM_ALL)
|
|
|
|
if(USE_VULKAN)
|
|
add_subdirectory(3rdparty/glslang EXCLUDE_FROM_ALL)
|
|
- add_subdirectory(3rdparty/vulkan-headers EXCLUDE_FROM_ALL)
|
|
endif()
|
|
|
|
if(CUBEB_API)
|
|
--- a/common/CMakeLists.txt
|
|
+++ b/common/CMakeLists.txt
|
|
@@ -135,7 +135,7 @@ target_sources(common PRIVATE
|
|
|
|
if(USE_VULKAN)
|
|
target_link_libraries(common PUBLIC
|
|
- Vulkan-Headers glslang
|
|
+ glslang
|
|
)
|
|
target_sources(common PRIVATE
|
|
Vulkan/ShaderCache.cpp
|