mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-26 20:15:03 +00:00
Include epoll-shim library (#3312)
This commit is contained in:
parent
d46792da94
commit
923c5f3ef5
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -106,3 +106,6 @@
|
||||
[submodule "externals/ext-libusb"]
|
||||
path = externals/ext-libusb
|
||||
url = https://github.com/shadps4-emu/ext-libusb.git
|
||||
[submodule "externals/epoll-shim"]
|
||||
path = externals/epoll-shim
|
||||
url = https://github.com/jiixyj/epoll-shim.git
|
||||
|
@ -246,6 +246,7 @@ find_package(Zydis 5.0.0 CONFIG)
|
||||
find_package(pugixml 1.14 CONFIG)
|
||||
if (APPLE)
|
||||
find_package(date 3.0.1 CONFIG)
|
||||
find_package(epoll-shim 3.14 CONFIG)
|
||||
endif()
|
||||
list(POP_BACK CMAKE_MODULE_PATH)
|
||||
|
||||
@ -1174,7 +1175,7 @@ if (APPLE)
|
||||
endif()
|
||||
|
||||
# Replacement for std::chrono::time_zone
|
||||
target_link_libraries(shadps4 PRIVATE date::date-tz)
|
||||
target_link_libraries(shadps4 PRIVATE date::date-tz epoll-shim)
|
||||
endif()
|
||||
|
||||
if (ENABLE_QT_GUI)
|
||||
|
4
externals/CMakeLists.txt
vendored
4
externals/CMakeLists.txt
vendored
@ -229,4 +229,8 @@ if (APPLE)
|
||||
if (NOT TARGET MoltenVK)
|
||||
add_subdirectory(MoltenVK)
|
||||
endif()
|
||||
|
||||
if (NOT TARGET epoll-shim)
|
||||
add_subdirectory(epoll-shim)
|
||||
endif()
|
||||
endif()
|
||||
|
1
externals/epoll-shim
vendored
Submodule
1
externals/epoll-shim
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 18159584bb3d17e601b9315a7398ace018251bdc
|
Loading…
Reference in New Issue
Block a user