2014-08-24 05:22:05 +04:00
|
|
|
set(SRCS
|
|
|
|
emu_window/emu_window_glfw.cpp
|
|
|
|
citra.cpp
|
2014-09-13 04:06:13 +04:00
|
|
|
config.cpp
|
2014-08-24 05:22:05 +04:00
|
|
|
)
|
|
|
|
set(HEADERS
|
|
|
|
emu_window/emu_window_glfw.h
|
2014-09-13 04:06:13 +04:00
|
|
|
config.h
|
|
|
|
default_ini.h
|
2014-08-24 05:22:05 +04:00
|
|
|
resource.h
|
|
|
|
)
|
|
|
|
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2013-09-27 01:34:48 +04:00
|
|
|
|
2014-05-20 02:19:36 +04:00
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
2014-08-24 05:22:05 +04:00
|
|
|
target_link_libraries(citra core common video_core)
|
2014-11-29 08:38:20 +03:00
|
|
|
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
2014-05-01 03:56:25 +04:00
|
|
|
|
2014-12-14 01:02:22 +03:00
|
|
|
if (UNIX)
|
|
|
|
target_link_libraries(citra -pthread)
|
|
|
|
endif()
|
|
|
|
|
2014-05-01 03:56:25 +04:00
|
|
|
if (APPLE)
|
2014-12-14 01:02:22 +03:00
|
|
|
target_link_libraries(citra iconv ${COREFOUNDATION_LIBRARY})
|
2014-08-24 05:22:05 +04:00
|
|
|
elseif (WIN32)
|
|
|
|
target_link_libraries(citra winmm)
|
2014-11-29 08:38:20 +03:00
|
|
|
if (MINGW)
|
|
|
|
target_link_libraries(citra iconv)
|
|
|
|
endif()
|
2014-08-24 05:22:05 +04:00
|
|
|
else() # Unix
|
2014-12-14 01:02:22 +03:00
|
|
|
target_link_libraries(citra rt)
|
2014-05-01 03:56:25 +04:00
|
|
|
endif()
|
2013-09-27 01:34:48 +04:00
|
|
|
|
|
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|