yuzu-fork/src/citra/CMakeLists.txt

22 lines
587 B
CMake
Raw Normal View History

set(SRCS
emu_window/emu_window_glfw.cpp
citra.cpp
config.cpp
citra.rc
)
set(HEADERS
emu_window/emu_window_glfw.h
config.h
default_ini.h
resource.h
)
create_directory_groups(${SRCS} ${HEADERS})
2013-09-26 22:34:48 +01:00
add_executable(citra ${SRCS} ${HEADERS})
target_link_libraries(citra core common video_core)
2014-11-29 05:38:20 +00:00
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
target_link_libraries(citra ${PLATFORM_LIBRARIES})
2014-05-01 00:56:25 +01:00
2013-09-26 22:34:48 +01:00
#install(TARGETS citra RUNTIME DESTINATION ${bindir})