dolphin/Source/Core/DolphinNoGUI/CMakeLists.txt

27 lines
584 B
CMake
Raw Normal View History

add_executable(dolphin-nogui
Platform.cpp
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()
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
)
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})