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-12-24 05:07:30 +00:00
|
|
|
citra.rc
|
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-19 22:19:36 +00:00
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
2015-07-22 00:08:49 +00:00
|
|
|
target_link_libraries(citra core video_core common)
|
2014-11-29 05:38:20 +00:00
|
|
|
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
2015-06-23 00:59:00 +00:00
|
|
|
if (MSVC)
|
|
|
|
target_link_libraries(citra getopt)
|
|
|
|
endif()
|
2014-12-24 09:34:25 +00:00
|
|
|
target_link_libraries(citra ${PLATFORM_LIBRARIES})
|
2014-04-30 23:56:25 +00:00
|
|
|
|
2015-07-09 19:19:02 +00:00
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD|OpenBSD|NetBSD")
|
|
|
|
install(TARGETS citra RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
2015-06-23 00:59:00 +00:00
|
|
|
endif()
|