dolphin/Source/Core/DolphinNoGUI/CMakeLists.txt
Lioncash 6f694e435c
DolphinNoGUI/CMakeLists: Remove the use of SRCS and LIBS variables
Instead, operate on the target directly. This removes the last usages of the
SRCS and LIBS variables.
2018-04-04 11:42:57 -04:00

20 lines
399 B
CMake

if(NOT(USE_X11 OR ENABLE_HEADLESS))
return()
endif()
add_executable(dolphin-nogui
MainNoGUI.cpp
)
set_target_properties(dolphin-nogui PROPERTIES OUTPUT_NAME dolphin-emu-nogui)
target_link_libraries(dolphin-nogui
PRIVATE
core
uicommon
cpp-optparse
)
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} dolphin-nogui)
install(TARGETS dolphin-nogui RUNTIME DESTINATION ${bindir})