mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2f573a117f
* Allow build, if no grabbers are enabled * Align available functions to right Qt version * Update to next development version * Align available functions to right Qt version * fix workflows (apt/nightly) * Disable QNetworkConfigurationManager deprecation warnings * Initial go on Smart Pointers * Add Deallocation * Correct QT_WARNING_DISABLE_DEPRECATED (available since 5.9) * Cluster Build Variables * Hyperion Light * Address build warnings * Hyperion Light - UI * Update Protobuf to latest master * Removed compiler warnings * Added restart ability to systray * Correct Protobuf * Ignore 'no-return' warning on protobuf build * hyperion-remote: Fix auto discovery of hyperion server * Fix Qt version override * Update changelog * Remove Grabber Components, if no Grabber exists * Standalone Grabber - Fix fps default * Remote Control - Have Source Selction accrosswhole screen * Enable Blackborder detection only, if relevant input sources available * Enable Blackborder detection only, if relevant input sources available * Remote UI - rearrange containers * - QT5/6 path for arm64 added - Remove ZLib Dependency - Fix macOS bundle info details - Cleanup Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com> Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
48 lines
1.4 KiB
CMake
48 lines
1.4 KiB
CMake
|
|
# Define the current source locations
|
|
set(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/protoserver)
|
|
set(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/protoserver)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${PROTOBUF_INCLUDE_DIRS}
|
|
)
|
|
|
|
set(ProtoServer_PROTOS ${CURRENT_SOURCE_DIR}/message.proto )
|
|
|
|
protobuf_generate_cpp(ProtoServer_PROTO_SRCS ProtoServer_PROTO_HDRS ${ProtoServer_PROTOS} )
|
|
### Split protoclient from protoserver as protoserver relates to HyperionDaemon and standalone capture binarys can't link to it
|
|
|
|
add_library(protoclient
|
|
${CURRENT_SOURCE_DIR}/ProtoClientConnection.h
|
|
${CURRENT_SOURCE_DIR}/ProtoClientConnection.cpp
|
|
${ProtoServer_PROTO_SRCS}
|
|
${ProtoServer_PROTO_HDRS}
|
|
)
|
|
|
|
add_library(protoserver
|
|
${CURRENT_HEADER_DIR}/ProtoServer.h
|
|
${CURRENT_SOURCE_DIR}/ProtoServer.cpp
|
|
)
|
|
|
|
# disable warnings for auto generated proto files, we can't change the files ....
|
|
if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
|
|
set_source_files_properties(${ProtoServer_PROTO_SRCS} ${ProtoServer_PROTO_HDRS} ${ProtoServer_PROTOS} PROPERTIES COMPILE_FLAGS "-w -Wno-return-local-addr")
|
|
elseif(MSVC)
|
|
set_source_files_properties(${ProtoServer_PROTO_SRCS} ${ProtoServer_PROTO_HDRS} ${ProtoServer_PROTOS} PROPERTIES COMPILE_FLAGS "/W0")
|
|
endif()
|
|
|
|
target_link_libraries(protoclient
|
|
hyperion
|
|
hyperion-utils
|
|
libprotobuf
|
|
Qt${QT_VERSION_MAJOR}::Gui
|
|
)
|
|
|
|
target_link_libraries(protoserver
|
|
hyperion
|
|
hyperion-utils
|
|
protoclient
|
|
Qt${QT_VERSION_MAJOR}::Gui
|
|
)
|