mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
6f694e435c
Instead, operate on the target directly. This removes the last usages of the SRCS and LIBS variables.
21 lines
399 B
CMake
21 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})
|
|
|