mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-30 20:31:10 -04:00
80 lines
2.6 KiB
CMake
80 lines
2.6 KiB
CMake
add_executable(duckstation-nogui
|
|
nogui_host.cpp
|
|
nogui_host.h
|
|
nogui_platform.h
|
|
)
|
|
|
|
target_precompile_headers(duckstation-nogui PRIVATE "pch.h")
|
|
target_link_libraries(duckstation-nogui PRIVATE core util common imgui scmversion)
|
|
|
|
if(WIN32)
|
|
message(STATUS "Building Win32 NoGUI Platform.")
|
|
target_sources(duckstation-nogui PRIVATE
|
|
duckstation-nogui.manifest
|
|
resource.h
|
|
win32_nogui_platform.cpp
|
|
win32_nogui_platform.h
|
|
)
|
|
|
|
# We want a Windows subsystem application not console.
|
|
set_target_properties(duckstation-nogui PROPERTIES
|
|
WIN32_EXECUTABLE TRUE
|
|
DEBUG_POSTFIX "-debug")
|
|
endif()
|
|
|
|
if(ENABLE_X11)
|
|
message(STATUS "Building X11 NoGUI Platform.")
|
|
target_compile_definitions(duckstation-nogui PRIVATE "NOGUI_PLATFORM_X11=1")
|
|
target_sources(duckstation-nogui PRIVATE
|
|
x11_nogui_platform.cpp
|
|
x11_nogui_platform.h
|
|
)
|
|
target_include_directories(duckstation-nogui PRIVATE "${X11_INCLUDE_DIR}" "${X11_Xrandr_INCLUDE_PATH}")
|
|
target_link_libraries(duckstation-nogui PRIVATE "${X11_LIBRARIES}" "${X11_Xrandr_LIB}")
|
|
endif()
|
|
|
|
if(ENABLE_WAYLAND)
|
|
message(STATUS "Building Wayland NoGUI Platform.")
|
|
find_package(ECM REQUIRED NO_MODULE)
|
|
list(APPEND CMAKE_MODULE_PATH "${ECM_MODULE_PATH}")
|
|
|
|
find_package(Wayland REQUIRED Client)
|
|
find_package(WaylandScanner REQUIRED)
|
|
find_package(WaylandProtocols 1.15 REQUIRED)
|
|
find_package(XKBCommon REQUIRED)
|
|
|
|
target_compile_definitions(duckstation-nogui PRIVATE "NOGUI_PLATFORM_WAYLAND=1")
|
|
target_sources(duckstation-nogui PRIVATE
|
|
wayland_nogui_platform.cpp
|
|
wayland_nogui_platform.h
|
|
)
|
|
|
|
# Generate the xdg-shell and xdg-decoration protocols at build-time.
|
|
# Because these are C, not C++, we have to put them in their own library, otherwise
|
|
# cmake tries to generate a C PCH as well as the C++ one...
|
|
ecm_add_wayland_client_protocol(WAYLAND_PLATFORM_SRCS
|
|
PROTOCOL "${WAYLAND_PROTOCOLS_PKGDATADIR}/stable/xdg-shell/xdg-shell.xml"
|
|
BASENAME xdg-shell)
|
|
ecm_add_wayland_client_protocol(WAYLAND_PLATFORM_SRCS
|
|
PROTOCOL "${WAYLAND_PROTOCOLS_PKGDATADIR}/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml"
|
|
BASENAME xdg-decoration)
|
|
add_library(duckstation-nogui-wayland-protocols STATIC ${WAYLAND_PLATFORM_SRCS})
|
|
target_include_directories(duckstation-nogui-wayland-protocols PUBLIC "${CMAKE_CURRENT_BINARY_DIR}")
|
|
|
|
target_link_libraries(duckstation-nogui PRIVATE
|
|
duckstation-nogui-wayland-protocols
|
|
Wayland::Client
|
|
XKBCommon::XKBCommon
|
|
)
|
|
endif()
|
|
|
|
if(APPLE)
|
|
message(STATUS "Building Cocoa NoGUI Platform.")
|
|
target_sources(duckstation-nogui PRIVATE
|
|
cocoa_key_names.h
|
|
cocoa_nogui_platform.mm
|
|
cocoa_nogui_platform.h
|
|
)
|
|
endif()
|
|
|