97a7381d29
Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU
35 lines
924 B
CMake
35 lines
924 B
CMake
set(SRCS
|
|
emu_window/emu_window_glfw.cpp
|
|
citra.cpp
|
|
config.cpp
|
|
citra.rc
|
|
)
|
|
set(HEADERS
|
|
emu_window/emu_window_glfw.h
|
|
config.h
|
|
default_ini.h
|
|
resource.h
|
|
)
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
|
target_link_libraries(citra core common video_core)
|
|
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
|
|
|
if (UNIX)
|
|
target_link_libraries(citra -pthread)
|
|
endif()
|
|
|
|
if (APPLE)
|
|
target_link_libraries(citra iconv ${COREFOUNDATION_LIBRARY})
|
|
elseif (WIN32)
|
|
target_link_libraries(citra winmm wsock32 ws2_32)
|
|
if (MINGW) # GCC does not support codecvt, so use iconv instead
|
|
target_link_libraries(citra iconv)
|
|
endif()
|
|
else() # Unix
|
|
target_link_libraries(citra rt)
|
|
endif()
|
|
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|