2014-08-24 03:22:05 +02:00
|
|
|
set(SRCS
|
2016-03-01 18:24:18 +01:00
|
|
|
emu_window/emu_window_sdl2.cpp
|
2014-08-24 03:22:05 +02:00
|
|
|
citra.cpp
|
2014-09-13 02:06:13 +02:00
|
|
|
config.cpp
|
2014-12-24 06:07:30 +01:00
|
|
|
citra.rc
|
2014-08-24 03:22:05 +02:00
|
|
|
)
|
|
|
|
set(HEADERS
|
2016-03-01 18:24:18 +01:00
|
|
|
emu_window/emu_window_sdl2.h
|
2014-09-13 02:06:13 +02:00
|
|
|
config.h
|
|
|
|
default_ini.h
|
2014-08-24 03:22:05 +02:00
|
|
|
resource.h
|
|
|
|
)
|
|
|
|
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2013-09-26 23:34:48 +02:00
|
|
|
|
2016-03-01 18:24:18 +01:00
|
|
|
include_directories(${SDL2_INCLUDE_DIR})
|
2015-08-28 21:57:08 +02:00
|
|
|
|
2014-05-20 00:19:36 +02:00
|
|
|
add_executable(citra ${SRCS} ${HEADERS})
|
2016-02-21 14:13:52 +01:00
|
|
|
target_link_libraries(citra core video_core audio_core common)
|
2016-03-01 18:24:18 +01:00
|
|
|
target_link_libraries(citra ${SDL2_LIBRARY} ${OPENGL_gl_LIBRARY} inih glad)
|
2015-06-23 02:59:00 +02:00
|
|
|
if (MSVC)
|
|
|
|
target_link_libraries(citra getopt)
|
|
|
|
endif()
|
2016-04-24 17:39:25 +02:00
|
|
|
target_link_libraries(citra ${PLATFORM_LIBRARIES} Threads::Threads)
|
2014-05-01 01:56:25 +02:00
|
|
|
|
2016-10-10 07:58:05 +02:00
|
|
|
if(UNIX AND NOT APPLE)
|
2015-07-09 21:19:02 +02:00
|
|
|
install(TARGETS citra RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
2015-08-30 08:37:42 +02:00
|
|
|
endif()
|
2016-03-01 18:24:18 +01:00
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
include(WindowsCopyFiles)
|
|
|
|
|
|
|
|
set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/")
|
|
|
|
|
|
|
|
windows_copy_files(citra ${SDL2_DLL_DIR} ${DLL_DEST} SDL2.dll)
|
|
|
|
|
|
|
|
unset(DLL_DEST)
|
|
|
|
endif()
|