2014-08-24 01:22:05 +00:00
|
|
|
set(SRCS
|
|
|
|
emu_window/emu_window_glfw.cpp
|
|
|
|
citra.cpp
|
2014-09-13 00:06:13 +00:00
|
|
|
config.cpp
|
2014-08-24 01:22:05 +00:00
|
|
|
)
|
|
|
|
set(HEADERS
|
|
|
|
emu_window/emu_window_glfw.h
|
2014-09-13 00:06:13 +00:00
|
|
|
config.h
|
|
|
|
default_ini.h
|
2014-08-24 01:22:05 +00:00
|
|
|
resource.h
|
|
|
|
)
|
|
|
|
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2013-09-26 21:34:48 +00:00
|
|
|
|
2014-05-01 01:44:48 +00:00
|
|
|
# NOTE: This is a workaround for CMake bug 0006976 (missing X11_xf86vmode_LIB variable)
|
|
|
|
if (NOT X11_xf86vmode_LIB)
|
|
|
|
set(X11_xv86vmode_LIB Xxf86vm)
|
|
|
|
endif()
|
|
|
|
|
2014-05-19 22:19:36 +00:00
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
2014-08-24 01:22:05 +00:00
|
|
|
target_link_libraries(citra core common video_core)
|
2014-09-13 00:06:13 +00:00
|
|
|
target_link_libraries(citra ${OPENGL_gl_LIBRARY} ${GLFW_LIBRARIES} inih)
|
2014-04-30 23:56:25 +00:00
|
|
|
|
|
|
|
if (APPLE)
|
2014-08-24 01:22:05 +00:00
|
|
|
target_link_libraries(citra iconv pthread ${COREFOUNDATION_LIBRARY})
|
|
|
|
elseif (WIN32)
|
|
|
|
target_link_libraries(citra winmm)
|
|
|
|
else() # Unix
|
|
|
|
target_link_libraries(citra pthread rt)
|
|
|
|
target_link_libraries(citra ${X11_X11_LIB} ${X11_Xi_LIB} ${X11_Xcursor_LIB} ${X11_Xrandr_LIB} ${X11_xv86vmode_LIB})
|
2014-04-30 23:56:25 +00:00
|
|
|
endif()
|
2013-09-26 21:34:48 +00:00
|
|
|
|
|
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|