0ea1dc43ec
This adds a ringbuffer implementation that targets bytes sending. The ringbuffer can grow when there's not enough room, that's why it's not thread-safe (locking must be done externally). It will be shrinked to its initial size as soon as the used bytes are the half of the initial size.
78 lines
2.0 KiB
CMake
78 lines
2.0 KiB
CMake
# FreeRDP: A Remote Desktop Protocol Implementation
|
|
# libfreerdp-utils cmake build script
|
|
#
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
#
|
|
# 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.
|
|
|
|
set(MODULE_NAME "freerdp-utils")
|
|
set(MODULE_PREFIX "FREERDP_UTILS")
|
|
|
|
set(${MODULE_PREFIX}_SRCS
|
|
event.c
|
|
bitmap.c
|
|
passphrase.c
|
|
pcap.c
|
|
profiler.c
|
|
rail.c
|
|
ringbuffer.c
|
|
signal.c
|
|
stopwatch.c
|
|
svc_plugin.c
|
|
tcp.c
|
|
time.c
|
|
uds.c)
|
|
|
|
if(NOT WIN32)
|
|
set(${MODULE_PREFIX}_SRCS ${${MODULE_PREFIX}_SRCS} msusb.c)
|
|
endif()
|
|
|
|
add_complex_library(MODULE ${MODULE_NAME} TYPE "OBJECT"
|
|
MONOLITHIC ${MONOLITHIC_BUILD}
|
|
SOURCES ${${MODULE_PREFIX}_SRCS}
|
|
EXPORT)
|
|
|
|
set_target_properties(${MODULE_NAME} PROPERTIES VERSION ${FREERDP_VERSION} SOVERSION ${FREERDP_API_VERSION} PREFIX "lib")
|
|
|
|
set(${MODULE_PREFIX}_LIBS
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
${CMAKE_DL_LIBS})
|
|
|
|
if(WIN32)
|
|
set(${MODULE_PREFIX}_LIBS ${${MODULE_PREFIX}_LIBS} ws2_32)
|
|
endif()
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES SunOS)
|
|
set(${MODULE_PREFIX}_LIBS ${${MODULE_PREFIX}_LIBS} rt)
|
|
endif()
|
|
|
|
set_complex_link_libraries(VARIABLE ${MODULE_PREFIX}_LIBS
|
|
MONOLITHIC ${MONOLITHIC_BUILD}
|
|
MODULE winpr
|
|
MODULES winpr-crt winpr-synch winpr-thread winpr-utils winpr-path)
|
|
|
|
if(MONOLITHIC_BUILD)
|
|
set(FREERDP_LIBS ${FREERDP_LIBS} ${${MODULE_PREFIX}_LIBS} PARENT_SCOPE)
|
|
else()
|
|
target_link_libraries(${MODULE_NAME} ${${MODULE_PREFIX}_LIBS})
|
|
install(TARGETS ${MODULE_NAME} DESTINATION ${CMAKE_INSTALL_LIBDIR} EXPORT FreeRDPTargets)
|
|
endif()
|
|
|
|
set_property(TARGET ${MODULE_NAME} PROPERTY FOLDER "FreeRDP/libfreerdp")
|
|
|
|
|
|
if(BUILD_TESTING)
|
|
add_subdirectory(test)
|
|
endif()
|
|
|