mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-03 07:13:50 +00:00
cmake: Don't build traversal_server on Windows, it requires posix platform
This commit is contained in:
parent
e55ec1ed35
commit
5540cda820
@ -98,4 +98,8 @@ if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
||||
endif()
|
||||
|
||||
add_dolphin_library(common "${SRCS}" "${LIBS}")
|
||||
add_executable(traversal_server TraversalServer.cpp)
|
||||
|
||||
if(UNIX)
|
||||
# Posix networking code needs to be fixed for Windows
|
||||
add_executable(traversal_server TraversalServer.cpp)
|
||||
endif()
|
||||
|
Loading…
x
Reference in New Issue
Block a user