2016-12-12 23:01:48 +00:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
|
|
|
|
|
2021-02-14 08:20:41 +00:00
|
|
|
function(create_resource file output filename)
|
|
|
|
# Read hex data from file
|
|
|
|
file(READ ${file} filedata HEX)
|
|
|
|
# Convert hex data for C compatibility
|
|
|
|
string(REGEX REPLACE "([0-9a-f][0-9a-f])" "0x\\1," filedata ${filedata})
|
|
|
|
# Write data to output file
|
|
|
|
set(RESOURCES_DIR "${PROJECT_BINARY_DIR}/dist" PARENT_SCOPE)
|
|
|
|
file(WRITE "${PROJECT_BINARY_DIR}/dist/${output}" "const unsigned char ${filename}[] = {${filedata}};\nconst unsigned ${filename}_size = sizeof(${filename});\n")
|
|
|
|
endfunction()
|
|
|
|
|
2018-01-18 00:37:34 +00:00
|
|
|
add_executable(yuzu-cmd
|
|
|
|
config.cpp
|
|
|
|
config.h
|
|
|
|
default_ini.h
|
|
|
|
emu_window/emu_window_sdl2.cpp
|
|
|
|
emu_window/emu_window_sdl2.h
|
2020-01-21 19:40:53 +00:00
|
|
|
emu_window/emu_window_sdl2_gl.cpp
|
|
|
|
emu_window/emu_window_sdl2_gl.h
|
2020-12-24 23:22:07 +00:00
|
|
|
emu_window/emu_window_sdl2_vk.cpp
|
|
|
|
emu_window/emu_window_sdl2_vk.h
|
2018-01-18 00:37:34 +00:00
|
|
|
yuzu.cpp
|
|
|
|
yuzu.rc
|
|
|
|
)
|
2014-08-24 01:22:05 +00:00
|
|
|
|
2018-01-18 00:37:34 +00:00
|
|
|
create_target_directory_groups(yuzu-cmd)
|
2013-09-26 21:34:48 +00:00
|
|
|
|
2018-01-12 02:21:20 +00:00
|
|
|
target_link_libraries(yuzu-cmd PRIVATE common core input_common)
|
|
|
|
target_link_libraries(yuzu-cmd PRIVATE inih glad)
|
2015-06-23 00:59:00 +00:00
|
|
|
if (MSVC)
|
2018-01-12 02:21:20 +00:00
|
|
|
target_link_libraries(yuzu-cmd PRIVATE getopt)
|
2015-06-23 00:59:00 +00:00
|
|
|
endif()
|
2018-01-12 02:21:20 +00:00
|
|
|
target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} SDL2 Threads::Threads)
|
2014-04-30 23:56:25 +00:00
|
|
|
|
2021-02-14 08:20:41 +00:00
|
|
|
create_resource("../../dist/yuzu.bmp" "yuzu_cmd/yuzu_icon.h" "yuzu_icon")
|
|
|
|
target_include_directories(yuzu-cmd PRIVATE ${RESOURCES_DIR})
|
|
|
|
|
2020-12-24 23:22:07 +00:00
|
|
|
target_include_directories(yuzu-cmd PRIVATE ../../externals/Vulkan-Headers/include)
|
|
|
|
|
2016-10-10 05:58:05 +00:00
|
|
|
if(UNIX AND NOT APPLE)
|
2018-01-12 02:21:20 +00:00
|
|
|
install(TARGETS yuzu-cmd RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
2015-08-30 06:37:42 +00:00
|
|
|
endif()
|
2016-03-01 17:24:18 +00:00
|
|
|
|
|
|
|
if (MSVC)
|
2018-01-13 23:49:16 +00:00
|
|
|
include(CopyYuzuSDLDeps)
|
|
|
|
copy_yuzu_SDL_deps(yuzu-cmd)
|
2016-03-01 17:24:18 +00:00
|
|
|
endif()
|