2012-05-25 01:05:12 +04:00
|
|
|
# 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>
|
2012-05-25 01:05:12 +04:00
|
|
|
#
|
|
|
|
# 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)
|
|
|
|
|
2012-12-01 01:13:19 +04:00
|
|
|
set(${MODULE_PREFIX}_COLLECTIONS_SRCS
|
|
|
|
collections/Queue.c
|
|
|
|
collections/Stack.c
|
2013-06-15 00:55:05 +04:00
|
|
|
collections/PubSub.c
|
2015-03-12 23:34:48 +03:00
|
|
|
collections/BipBuffer.c
|
2014-03-05 03:15:03 +04:00
|
|
|
collections/BitStream.c
|
2013-01-18 22:50:35 +04:00
|
|
|
collections/Reference.c
|
2012-12-06 04:36:45 +04:00
|
|
|
collections/ArrayList.c
|
|
|
|
collections/Dictionary.c
|
2013-08-06 01:29:14 +04:00
|
|
|
collections/LinkedList.c
|
2014-02-10 06:55:21 +04:00
|
|
|
collections/HashTable.c
|
2012-12-06 04:36:45 +04:00
|
|
|
collections/ListDictionary.c
|
2013-01-22 04:22:08 +04:00
|
|
|
collections/KeyValuePair.c
|
2013-01-23 05:36:08 +04:00
|
|
|
collections/CountdownEvent.c
|
2013-01-24 23:09:44 +04:00
|
|
|
collections/BufferPool.c
|
2013-02-15 05:39:56 +04:00
|
|
|
collections/ObjectPool.c
|
2013-04-12 05:59:02 +04:00
|
|
|
collections/StreamPool.c
|
2013-02-20 23:48:32 +04:00
|
|
|
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)
|
2012-12-01 01:13:19 +04:00
|
|
|
|
2013-03-22 05:30:31 +04:00
|
|
|
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
|
2013-10-02 21:38:21 +04:00
|
|
|
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
|
2013-10-09 07:18:59 +04:00
|
|
|
wlog/PacketMessage.c
|
|
|
|
wlog/PacketMessage.h
|
2013-10-02 21:38:21 +04:00
|
|
|
wlog/Appender.c
|
|
|
|
wlog/Appender.h
|
2013-10-02 00:08:26 +04:00
|
|
|
wlog/FileAppender.c
|
|
|
|
wlog/FileAppender.h
|
2013-10-02 21:38:21 +04:00
|
|
|
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)
|
2013-03-22 05:30:31 +04:00
|
|
|
|
2012-10-01 06:58:59 +04:00
|
|
|
set(${MODULE_PREFIX}_SRCS
|
2014-03-25 02:20:34 +04:00
|
|
|
ini.c
|
2012-11-02 08:20:46 +04:00
|
|
|
sam.c
|
2012-06-03 02:21:04 +04:00
|
|
|
ntlm.c
|
2014-09-04 00:20:50 +04:00
|
|
|
image.c
|
2012-05-25 11:24:42 +04:00
|
|
|
print.c
|
2012-11-02 08:20:46 +04:00
|
|
|
stream.c
|
2014-08-14 12:36:50 +04:00
|
|
|
debug.c
|
2015-03-30 18:50:47 +03:00
|
|
|
winpr.c
|
2014-07-28 23:55:57 +04:00
|
|
|
cmdline.c
|
|
|
|
ssl.c)
|
2012-05-25 01:05:12 +04:00
|
|
|
|
2014-08-14 12:36:50 +04:00
|
|
|
if (ANDROID)
|
2014-09-28 19:02:39 +04:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
2014-08-14 12:36:50 +04:00
|
|
|
endif()
|
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
winpr_module_add(${${MODULE_PREFIX}_SRCS}
|
2013-03-22 05:30:31 +04:00
|
|
|
${${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})
|
2012-12-01 01:13:19 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
winpr_include_directory_add(
|
2014-09-28 19:02:39 +04:00
|
|
|
"lodepng"
|
2014-07-10 02:03:20 +04:00
|
|
|
"trio"
|
|
|
|
"."
|
|
|
|
${ZLIB_INCLUDE_DIRS}
|
|
|
|
${OPENSSL_INCLUDE_DIR})
|
2012-05-25 01:05:12 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
winpr_library_add(
|
2012-08-14 22:37:31 +04:00
|
|
|
${ZLIB_LIBRARIES}
|
|
|
|
${OPENSSL_LIBRARIES})
|
2013-03-22 05:30:31 +04:00
|
|
|
|
|
|
|
if(UNIX)
|
2014-07-10 02:03:20 +04:00
|
|
|
winpr_library_add(m)
|
2012-08-14 22:37:31 +04:00
|
|
|
endif()
|
2012-10-01 06:58:59 +04:00
|
|
|
|
2015-03-10 01:21:28 +03:00
|
|
|
if(BSD)
|
|
|
|
winpr_library_add(execinfo)
|
|
|
|
endif()
|
|
|
|
|
2014-09-17 19:24:12 +04:00
|
|
|
if(WIN32)
|
|
|
|
winpr_library_add(Dbghelp)
|
|
|
|
endif()
|
|
|
|
|
2012-11-02 08:20:46 +04:00
|
|
|
if(BUILD_TESTING)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|
2014-04-29 11:42:18 +04:00
|
|
|
|