FreeRDP/winpr/libwinpr/utils/CMakeLists.txt

129 lines
2.6 KiB
CMake
Raw Normal View History

# WinPR: Windows Portable Runtime
# libwinpr-utils cmake build script
#
2012-09-21 04:45:56 +04:00
# 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.
2013-10-02 00:08:26 +04:00
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(${MODULE_PREFIX}_COLLECTIONS_SRCS
collections/Queue.c
collections/Stack.c
collections/PubSub.c
collections/BipBuffer.c
collections/BitStream.c
collections/Reference.c
collections/ArrayList.c
collections/Dictionary.c
collections/LinkedList.c
2014-02-10 06:55:21 +04:00
collections/HashTable.c
collections/ListDictionary.c
collections/KeyValuePair.c
2013-01-23 05:36:08 +04:00
collections/CountdownEvent.c
collections/BufferPool.c
2013-02-15 05:39:56 +04:00
collections/ObjectPool.c
collections/StreamPool.c
collections/MessageQueue.c
collections/MessagePipe.c)
2014-09-28 19:02:39 +04:00
set(${MODULE_PREFIX}_LODEPNG_SRCS
lodepng/lodepng.c
lodepng/lodepng.h)
set(${MODULE_PREFIX}_TRIO_SRCS
trio/strio.h
trio/trio.c
trio/trio.h
trio/triodef.h
trio/trionan.c
trio/trionan.h
trio/triop.h
trio/triostr.c
trio/triostr.h)
2013-10-02 00:08:26 +04:00
set(${MODULE_PREFIX}_WLOG_SRCS
wlog/wlog.c
wlog/wlog.h
wlog/Layout.c
wlog/Layout.h
wlog/Message.c
wlog/Message.h
wlog/TextMessage.c
wlog/TextMessage.h
wlog/DataMessage.c
wlog/DataMessage.h
wlog/ImageMessage.c
wlog/ImageMessage.h
wlog/PacketMessage.c
wlog/PacketMessage.h
wlog/Appender.c
wlog/Appender.h
2013-10-02 00:08:26 +04:00
wlog/FileAppender.c
wlog/FileAppender.h
wlog/BinaryAppender.c
wlog/BinaryAppender.h
2014-11-16 14:20:48 +03:00
wlog/CallbackAppender.c
wlog/CallbackAppender.h
2013-10-02 00:08:26 +04:00
wlog/ConsoleAppender.c
wlog/ConsoleAppender.h)
2012-10-01 06:58:59 +04:00
set(${MODULE_PREFIX}_SRCS
ini.c
sam.c
ntlm.c
image.c
print.c
stream.c
debug.c
OpenSSL thread safety freerdp/winpr had the following issues: * The non reentrant SSL_library_init() was called concurrently (crash) * Missing code/api to set the eventually required OpenSSL static and dynamic locking callbacks * Missing code/api to free the application-global or thread-local OpenSSL data and tables This commit creates two new winpr functions: BOOL winpr_InitializeSSL(DWORD flags): Use the flag WINPR_SSL_INIT_ALREADY_INITIALIZED if you want to tell winpr that your application has already initialized OpenSSL. If required use the flag WINPR_SSL_INIT_ENABLE_LOCKING to tell winpr that it should set the OpenSSL static and dynamic locking callbacks. Otherwise just call it with the flag WINPR_SSL_INIT_DEFAULT. The recommended way is that your application calls this function once before any threads are created. However, in order to support lazy OpenSSL library initialization winpr_InitializeSSL() can also safely be called multiple times and concurrently because it uses the new InitOnceExecuteOnce() function to guarantee that the initialization is only performed successfully once during the life time of the calling process. BOOL winpr_CleanupSSL(DWORD flags): If you create a thread that uses SSL you should call this function before the thread returns using the flag WINPR_SSL_CLEANUP_THREAD in order to clean up the thread-local OpenSSL data and tables. Call the function with the flag WINPR_SSL_CLEANUP_GLOBAL before terminating your application. Note: This commit only replaced the current occurences of the SSL_load_error_strings(); SSL_library_init(); pairs in the freerdp source with winpr_InitializeSSL(). None of the server or client applications has been changed according to the recommended usage described above (TBDL).
2014-07-28 23:55:57 +04:00
cmdline.c
ssl.c)
if (ANDROID)
2014-09-28 19:02:39 +04:00
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
endif()
winpr_module_add(${${MODULE_PREFIX}_SRCS}
${${MODULE_PREFIX}_COLLECTIONS_SRCS}
2014-09-28 19:02:39 +04:00
${${MODULE_PREFIX}_LODEPNG_SRCS}
2013-10-02 00:08:26 +04:00
${${MODULE_PREFIX}_TRIO_SRCS}
${${MODULE_PREFIX}_WLOG_SRCS})
winpr_include_directory_add(
2014-09-28 19:02:39 +04:00
"lodepng"
"trio"
"."
${ZLIB_INCLUDE_DIRS}
${OPENSSL_INCLUDE_DIR})
winpr_library_add(
${ZLIB_LIBRARIES}
${OPENSSL_LIBRARIES})
if(UNIX)
winpr_library_add(m)
endif()
2012-10-01 06:58:59 +04:00
2015-03-10 01:21:28 +03:00
if(BSD)
winpr_library_add(execinfo)
endif()
if(WIN32)
winpr_library_add(Dbghelp)
endif()
if(BUILD_TESTING)
add_subdirectory(test)
endif()