2018-04-04 15:41:50 +00:00
|
|
|
add_executable(dolphin-nogui
|
2018-10-24 05:50:54 +00:00
|
|
|
Platform.cpp
|
2019-05-29 09:04:32 +00:00
|
|
|
Platform.h
|
2018-10-24 05:50:54 +00:00
|
|
|
PlatformHeadless.cpp
|
2018-04-04 15:41:50 +00:00
|
|
|
MainNoGUI.cpp
|
|
|
|
)
|
2016-05-05 23:55:29 +00:00
|
|
|
|
2024-04-18 10:58:08 +00:00
|
|
|
if(X11_FOUND)
|
2018-10-24 05:50:54 +00:00
|
|
|
target_sources(dolphin-nogui PRIVATE PlatformX11.cpp)
|
2024-04-18 10:58:08 +00:00
|
|
|
target_link_libraries(dolphin-nogui PRIVATE PkgConfig::XRANDR PkgConfig::X11)
|
2018-10-24 05:50:54 +00:00
|
|
|
endif()
|
|
|
|
|
2019-11-26 04:25:19 +00:00
|
|
|
if(WIN32)
|
|
|
|
target_sources(dolphin-nogui PRIVATE PlatformWin32.cpp)
|
|
|
|
endif()
|
|
|
|
|
2023-02-02 00:00:12 +00:00
|
|
|
if(APPLE)
|
|
|
|
target_sources(dolphin-nogui PRIVATE PlatformMacos.mm)
|
|
|
|
target_compile_options(dolphin-nogui PRIVATE -fobjc-arc)
|
|
|
|
endif()
|
|
|
|
|
2019-04-10 14:44:21 +00:00
|
|
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
|
|
|
target_sources(dolphin-nogui PRIVATE PlatformFBDev.cpp)
|
|
|
|
endif()
|
|
|
|
|
2017-03-08 19:42:46 +00:00
|
|
|
set_target_properties(dolphin-nogui PROPERTIES OUTPUT_NAME dolphin-emu-nogui)
|
2016-05-05 23:55:29 +00:00
|
|
|
|
2018-04-04 15:41:50 +00:00
|
|
|
target_link_libraries(dolphin-nogui
|
|
|
|
PRIVATE
|
2016-05-05 23:55:29 +00:00
|
|
|
core
|
|
|
|
uicommon
|
|
|
|
cpp-optparse
|
|
|
|
)
|
|
|
|
|
2023-02-02 00:00:12 +00:00
|
|
|
if(APPLE)
|
|
|
|
target_link_libraries(dolphin-nogui
|
|
|
|
PRIVATE
|
|
|
|
${APPKIT_LIBRARY}
|
|
|
|
${COREFOUNDATION_LIBRARY}
|
|
|
|
${IOK_LIBRARY}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2024-05-04 03:17:45 +00:00
|
|
|
if(WIN32)
|
|
|
|
# needed for adjusting window decorations with DwmSetWindowAttribute
|
|
|
|
target_link_libraries(dolphin-nogui PRIVATE dwmapi.lib)
|
|
|
|
endif()
|
|
|
|
|
2022-05-21 23:19:44 +00:00
|
|
|
if(MSVC)
|
|
|
|
# Add precompiled header
|
|
|
|
target_link_libraries(dolphin-nogui PRIVATE use_pch)
|
|
|
|
endif()
|
|
|
|
|
2018-06-08 20:56:11 +00:00
|
|
|
if(USE_DISCORD_PRESENCE)
|
|
|
|
target_compile_definitions(dolphin-nogui PRIVATE -DUSE_DISCORD_PRESENCE)
|
|
|
|
endif()
|
|
|
|
|
2016-05-05 23:55:29 +00:00
|
|
|
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} dolphin-nogui)
|
2022-10-11 18:44:04 +00:00
|
|
|
install(TARGETS dolphin-nogui RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
2016-05-05 23:55:29 +00:00
|
|
|
|