citra-shitamoto-network/src/citra/CMakeLists.txt

36 lines
924 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-27 03:04:48 +05:30
add_executable(citra ${SRCS} ${HEADERS})
target_link_libraries(citra core common video_core)
2014-11-29 11:08:20 +05:30
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
2014-05-01 05:26:25 +05:30
if (UNIX)
target_link_libraries(citra -pthread)
endif()
2014-05-01 05:26:25 +05:30
if (APPLE)
target_link_libraries(citra iconv ${COREFOUNDATION_LIBRARY})
elseif (WIN32)
target_link_libraries(citra winmm wsock32 ws2_32)
if (MINGW) # GCC does not support codecvt, so use iconv instead
2014-11-29 11:08:20 +05:30
target_link_libraries(citra iconv)
endif()
else() # Unix
target_link_libraries(citra rt)
2014-05-01 05:26:25 +05:30
endif()
2013-09-27 03:04:48 +05:30
#install(TARGETS citra RUNTIME DESTINATION ${bindir})