2014-08-23 21:22:05 -04:00
|
|
|
set(SRCS
|
|
|
|
emu_window/emu_window_glfw.cpp
|
|
|
|
citra.cpp
|
2014-09-12 21:06:13 -03:00
|
|
|
config.cpp
|
2014-12-24 02:07:30 -03:00
|
|
|
citra.rc
|
2014-08-23 21:22:05 -04:00
|
|
|
)
|
|
|
|
set(HEADERS
|
|
|
|
emu_window/emu_window_glfw.h
|
2014-09-12 21:06:13 -03:00
|
|
|
config.h
|
|
|
|
default_ini.h
|
2014-08-23 21:22:05 -04:00
|
|
|
resource.h
|
|
|
|
)
|
|
|
|
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2013-09-26 18:34:48 -03:00
|
|
|
|
2014-05-19 18:19:36 -04:00
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
2014-08-23 21:22:05 -04:00
|
|
|
target_link_libraries(citra core common video_core)
|
2014-11-29 02:38:20 -03:00
|
|
|
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
2014-12-24 06:34:25 -03:00
|
|
|
target_link_libraries(citra ${PLATFORM_LIBRARIES})
|
2014-04-30 19:56:25 -04:00
|
|
|
|
2013-09-26 18:34:48 -03:00
|
|
|
#install(TARGETS citra RUNTIME DESTINATION ${bindir})
|