dolphin/Source/Core/DolphinNoGUI/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
883 B
CMake
Raw Normal View History

add_executable(dolphin-nogui
Platform.cpp
Platform.h
PlatformHeadless.cpp
MainNoGUI.cpp
)
2016-05-05 23:55:29 +00:00
if(ENABLE_X11 AND X11_FOUND)
target_sources(dolphin-nogui PRIVATE PlatformX11.cpp)
endif()
2019-11-26 04:25:19 +00:00
if(WIN32)
target_sources(dolphin-nogui PRIVATE PlatformWin32.cpp)
endif()
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
target_sources(dolphin-nogui PRIVATE PlatformFBDev.cpp)
endif()
set_target_properties(dolphin-nogui PROPERTIES OUTPUT_NAME dolphin-emu-nogui)
2016-05-05 23:55:29 +00:00
target_link_libraries(dolphin-nogui
PRIVATE
2016-05-05 23:55:29 +00:00
core
uicommon
cpp-optparse
)
2022-05-21 23:19:44 +00:00
if(MSVC)
# Add precompiled header
target_link_libraries(dolphin-nogui PRIVATE use_pch)
endif()
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)
install(TARGETS dolphin-nogui RUNTIME DESTINATION ${bindir})