0
0
mirror of https://github.com/mumble-voip/mumble.git synced 2024-11-21 15:17:56 +00:00
mumble-voip_mumble/helpers/g15helper/CMakeLists.txt
Robert Adam 330c356e71 MAINT: Remove copyright year from all copyright notices
Keeping these up-to-date is just super tedious and they don't really
fulfill any purpose these days.
2024-09-30 18:06:20 +02:00

63 lines
2.3 KiB
CMake

# Copyright The Mumble Developers. All rights reserved.
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file at the root of the
# Mumble source tree or at <https://www.mumble.info/LICENSE>.
option(g15-emulator "Build the g15helper executable in emulator mode. This will cause an emulated G15 window to appear on screen. Allows the use of Mumble's G15 support without owning the physical hardware." OFF)
set(G15HELPER_RC "${CMAKE_CURRENT_BINARY_DIR}/g15helper.rc")
set(G15HELPER_ICON "${CMAKE_SOURCE_DIR}/icons/g15helper.ico")
set(G15HELPER_PLIST "${CMAKE_BINARY_DIR}/g15helper.plist")
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/g15helper.plist.in" "${G15HELPER_PLIST}")
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/g15helper.rc.in" "${G15HELPER_RC}")
get_target_property(MUMBLE_SOURCE_DIR mumble SOURCE_DIR)
add_executable(g15-helper WIN32
"${CMAKE_SOURCE_DIR}/auxiliary_files/mumble.appcompat.manifest"
"${G15HELPER_RC}"
)
set_target_properties(g15-helper
PROPERTIES
OUTPUT_NAME "mumble-g15-helper"
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}
)
target_compile_definitions(g15-helper PRIVATE $<$<CONFIG:Debug>:USE_LOGFILE>)
if(g15-emulator)
find_pkg(Qt6 COMPONENTS Core Gui Widgets REQUIRED)
set_target_properties(g15-helper PROPERTIES AUTOMOC ON)
target_sources(g15-helper PRIVATE "g15helper_emu.cpp" "g15helper_emu.h")
target_link_libraries(g15-helper PRIVATE Qt6::Core Qt6::Gui Qt6::Widgets)
if(static AND WIN32 AND TARGET Qt6::QWindowsIntegrationPlugin)
include_qt_plugin(g15-helper PRIVATE QWindowsIntegrationPlugin)
target_link_libraries(g15-helper PRIVATE Qt6::QWindowsIntegrationPlugin)
endif()
else()
if(MSVC)
set_target_properties(g15-helper PROPERTIES MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
endif()
target_sources(g15-helper PRIVATE "g15helper.c" "g15helper.h")
if(NOT G15_DIR)
set(G15_DIR "${3RDPARTY_DIR}/g15")
endif()
if(64_BIT)
find_library(LIB_LGLCD "lglcd" HINTS "${G15_DIR}/Lib/x64")
else()
find_library(LIB_LGLCD "lglcd" HINTS "${G15_DIR}/Lib/x86")
endif()
target_include_directories(g15-helper PRIVATE "${G15_DIR}/Src")
target_link_libraries(g15-helper PRIVATE ${LIB_LGLCD})
endif()
install(TARGETS g15-helper RUNTIME DESTINATION "${MUMBLE_INSTALL_EXECUTABLEDIR}" COMPONENT mumble_client)