2014-08-23 18:22:05 -07:00
|
|
|
set(SRCS
|
|
|
|
emu_window/emu_window_glfw.cpp
|
|
|
|
citra.cpp
|
2014-09-12 17:06:13 -07:00
|
|
|
config.cpp
|
2014-12-23 21:07:30 -08:00
|
|
|
citra.rc
|
2014-08-23 18:22:05 -07:00
|
|
|
)
|
|
|
|
set(HEADERS
|
|
|
|
emu_window/emu_window_glfw.h
|
2014-09-12 17:06:13 -07:00
|
|
|
config.h
|
|
|
|
default_ini.h
|
2014-08-23 18:22:05 -07:00
|
|
|
resource.h
|
|
|
|
)
|
|
|
|
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2013-09-26 14:34:48 -07:00
|
|
|
|
2014-05-19 15:19:36 -07:00
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
2014-08-23 18:22:05 -07:00
|
|
|
target_link_libraries(citra core common video_core)
|
2014-11-28 21:38:20 -08:00
|
|
|
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
2014-04-30 16:56:25 -07:00
|
|
|
|
2014-12-13 14:02:22 -08:00
|
|
|
if (UNIX)
|
|
|
|
target_link_libraries(citra -pthread)
|
|
|
|
endif()
|
|
|
|
|
2014-04-30 16:56:25 -07:00
|
|
|
if (APPLE)
|
2014-12-13 14:02:22 -08:00
|
|
|
target_link_libraries(citra iconv ${COREFOUNDATION_LIBRARY})
|
2014-08-23 18:22:05 -07:00
|
|
|
elseif (WIN32)
|
2014-12-08 20:52:27 -08:00
|
|
|
target_link_libraries(citra winmm wsock32 ws2_32)
|
2014-12-29 19:59:14 -08:00
|
|
|
if (MINGW) # GCC does not support codecvt, so use iconv instead
|
2014-11-28 21:38:20 -08:00
|
|
|
target_link_libraries(citra iconv)
|
2014-12-08 20:52:27 -08:00
|
|
|
endif()
|
2014-08-23 18:22:05 -07:00
|
|
|
else() # Unix
|
2014-12-13 14:02:22 -08:00
|
|
|
target_link_libraries(citra rt)
|
2014-04-30 16:56:25 -07:00
|
|
|
endif()
|
2013-09-26 14:34:48 -07:00
|
|
|
|
|
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|