f791cf6308
The proxy modules must always be shared libraries. To have the proper system extension, use keyword SHARED instead of MOUDLE
52 lines
1.4 KiB
CMake
52 lines
1.4 KiB
CMake
#
|
|
# FreeRDP: A Remote Desktop Protocol Implementation
|
|
# FreeRDP Proxy Server Demo C++ Module
|
|
#
|
|
# Copyright 2023 Armin Novak <anovak@thincast.com>
|
|
# Copyright 2023 Thincast Technologies GmbH
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
project(proxy-dyn-channel-dump-plugin VERSION 1.0.0 LANGUAGES CXX)
|
|
|
|
include(CheckIPOSupported)
|
|
check_ipo_supported(RESULT supported OUTPUT error)
|
|
if (supported)
|
|
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
endif()
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
include(MSVCRuntime)
|
|
|
|
add_library(${PROJECT_NAME} SHARED
|
|
dyn-channel-dump.cpp
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE
|
|
winpr
|
|
freerdp
|
|
freerdp-client
|
|
freerdp-server
|
|
freerdp-server-proxy
|
|
)
|
|
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "")
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES NO_SONAME 1)
|
|
|
|
install(TARGETS ${PROJECT_NAME} DESTINATION ${FREERDP_PROXY_PLUGINDIR})
|