mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Merge pull request #4951 from waddlesplash/haiku-2
Initial support for Haiku.
This commit is contained in:
@ -95,6 +95,9 @@ if(WIN32)
|
||||
set(SRCS ${SRCS} GL/GLInterface/WGL.cpp)
|
||||
elseif(APPLE)
|
||||
set(SRCS ${SRCS} GL/GLInterface/AGL.mm)
|
||||
elseif(HAIKU)
|
||||
set(SRCS ${SRCS} GL/GLInterface/BGL.cpp)
|
||||
set(LIBS ${LIBS} be GL)
|
||||
elseif(USE_X11)
|
||||
if (NOT USE_EGL)
|
||||
set(SRCS ${SRCS} GL/GLInterface/GLX.cpp)
|
||||
@ -115,4 +118,7 @@ add_dolphin_library(common "${SRCS}" "${LIBS}")
|
||||
if(UNIX)
|
||||
# Posix networking code needs to be fixed for Windows
|
||||
add_executable(traversal_server TraversalServer.cpp)
|
||||
if(HAIKU)
|
||||
target_link_libraries(traversal_server network)
|
||||
endif()
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user