yuzu-fork/src/citra/CMakeLists.txt

35 lines
892 B
CMake
Raw Normal View History

set(SRCS
emu_window/emu_window_glfw.cpp
citra.cpp
config.cpp
)
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)
2014-05-01 00:56:25 +01:00
if (UNIX)
target_link_libraries(citra -pthread)
endif()
2014-05-01 00:56:25 +01:00
if (APPLE)
target_link_libraries(citra iconv ${COREFOUNDATION_LIBRARY})
elseif (WIN32)
target_link_libraries(citra winmm)
if (MINGW) # GCC does not support codecvt, so use iconv instead
2014-11-29 05:38:20 +00:00
target_link_libraries(citra iconv)
endif()
else() # Unix
target_link_libraries(citra rt)
2014-05-01 00:56:25 +01:00
endif()
2013-09-26 22:34:48 +01:00
#install(TARGETS citra RUNTIME DESTINATION ${bindir})