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()
|
endif()
|
||||||
|
|
||||||
add_dolphin_library(common "${SRCS}" "${LIBS}")
|
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…
Reference in New Issue