2012-08-14 23:49:39 +04:00
|
|
|
# WinPR: Windows Portable Runtime
|
|
|
|
# winpr 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.
|
|
|
|
|
|
|
|
if (APPLE)
|
|
|
|
# flat_namespace should be avoided, but is required for -undefined warning. Since WinPR currently has
|
|
|
|
# a lot of undefined symbols in use, use this hack until they're filled out.
|
2015-08-19 10:02:20 +03:00
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-flat_namespace,-undefined,warning")
|
2012-08-14 23:49:39 +04:00
|
|
|
endif()
|
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
set(WINPR_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(WINPR_SRCS "")
|
|
|
|
set(WINPR_LIBS "")
|
|
|
|
set(WINPR_INCLUDES "")
|
|
|
|
set(WINPR_DEFINITIONS "")
|
2012-08-14 23:49:39 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
macro (winpr_module_add)
|
|
|
|
file (RELATIVE_PATH _relPath "${WINPR_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
foreach (_src ${ARGN})
|
|
|
|
if (_relPath)
|
|
|
|
list (APPEND WINPR_SRCS "${_relPath}/${_src}")
|
|
|
|
else()
|
|
|
|
list (APPEND WINPR_SRCS "${_src}")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
if (_relPath)
|
|
|
|
set (WINPR_SRCS ${WINPR_SRCS} PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
endmacro()
|
2012-10-04 03:50:48 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
macro (winpr_include_directory_add)
|
|
|
|
file (RELATIVE_PATH _relPath "${WINPR_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}")
|
2014-07-10 19:40:27 +04:00
|
|
|
foreach (_inc ${ARGN})
|
2015-08-19 10:02:20 +03:00
|
|
|
if (IS_ABSOLUTE ${_inc})
|
|
|
|
list (APPEND WINPR_INCLUDES "${_inc}")
|
|
|
|
else()
|
|
|
|
if (_relPath)
|
|
|
|
list (APPEND WINPR_INCLUDES "${_relPath}/${_inc}")
|
|
|
|
else()
|
|
|
|
list (APPEND WINPR_INCLUDES "${_inc}")
|
|
|
|
endif()
|
|
|
|
endif()
|
2014-07-10 02:03:20 +04:00
|
|
|
endforeach()
|
|
|
|
if (_relPath)
|
|
|
|
set (WINPR_INCLUDES ${WINPR_INCLUDES} PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
endmacro()
|
2012-10-04 03:29:28 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
macro (winpr_library_add)
|
|
|
|
foreach (_lib ${ARGN})
|
|
|
|
list (APPEND WINPR_LIBS "${_lib}")
|
|
|
|
endforeach()
|
|
|
|
set (WINPR_LIBS ${WINPR_LIBS} PARENT_SCOPE)
|
|
|
|
endmacro()
|
2012-08-14 23:49:39 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
macro (winpr_definition_add)
|
|
|
|
foreach (_define ${ARGN})
|
|
|
|
list (APPEND WINPR_DEFINITIONS "${_define}")
|
|
|
|
endforeach()
|
|
|
|
set (WINPR_DEFINITIONS ${WINPR_DEFINITIONS} PARENT_SCOPE)
|
|
|
|
endmacro()
|
2012-10-04 03:29:28 +04:00
|
|
|
|
2016-02-01 17:21:07 +03:00
|
|
|
if (ANDROID)
|
|
|
|
winpr_library_add(log)
|
|
|
|
endif()
|
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
# Level "1" API as defined for MinCore.lib
|
2015-08-19 10:02:20 +03:00
|
|
|
set(WINPR_CORE synch locale library file comm pipe interlocked security
|
2015-03-05 00:56:48 +03:00
|
|
|
environment crypto registry credentials path io memory input shell
|
2015-08-19 10:02:20 +03:00
|
|
|
heap utils error com timezone sysinfo pool handle thread)
|
2012-10-04 03:29:28 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
foreach(DIR ${WINPR_CORE})
|
|
|
|
add_subdirectory(${DIR})
|
2016-06-15 14:54:31 +03:00
|
|
|
source_group("${DIR}" REGULAR_EXPRESSION "${DIR}/.*\\.[ch]")
|
2014-07-10 02:03:20 +04:00
|
|
|
endforeach()
|
2012-08-15 03:55:48 +04:00
|
|
|
|
2015-08-19 10:02:20 +03:00
|
|
|
set(WINPR_LEVEL2 winsock sspi winhttp asn1 sspicli crt bcrypt rpc credui
|
2014-10-17 23:19:05 +04:00
|
|
|
wtsapi dsparse wnd smartcard nt clipboard)
|
2012-08-14 23:49:39 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
foreach(DIR ${WINPR_LEVEL2})
|
|
|
|
add_subdirectory(${DIR})
|
2016-06-15 14:54:31 +03:00
|
|
|
source_group("${DIR}" REGULAR_EXPRESSION "${DIR}/.*\\.[ch]")
|
2014-07-10 02:03:20 +04:00
|
|
|
endforeach()
|
2013-07-26 05:59:21 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
set(MODULE_NAME winpr)
|
|
|
|
list(REMOVE_DUPLICATES WINPR_DEFINITIONS)
|
|
|
|
list(REMOVE_DUPLICATES WINPR_LIBS)
|
|
|
|
list(REMOVE_DUPLICATES WINPR_INCLUDES)
|
|
|
|
include_directories(${WINPR_INCLUDES})
|
2014-10-03 17:17:40 +04:00
|
|
|
|
|
|
|
# On windows create dll version information.
|
|
|
|
# Vendor, product and year are already set in top level CMakeLists.txt
|
|
|
|
if (WIN32)
|
|
|
|
set (RC_VERSION_MAJOR ${WINPR_VERSION_MAJOR})
|
|
|
|
set (RC_VERSION_MINOR ${WINPR_VERSION_MINOR})
|
|
|
|
set (RC_VERSION_BUILD ${WINPR_VERSION_REVISION})
|
|
|
|
set (RC_VERSION_FILE "${CMAKE_SHARED_LIBRARY_PREFIX}${MODULE_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" )
|
|
|
|
|
|
|
|
configure_file(
|
|
|
|
${CMAKE_SOURCE_DIR}/cmake/WindowsDLLVersion.rc.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/version.rc
|
|
|
|
@ONLY)
|
|
|
|
|
|
|
|
set (WINPR_SRCS ${WINPR_SRCS} ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
|
2016-03-14 16:08:48 +03:00
|
|
|
list(APPEND WINPR_LIBS "Shlwapi")
|
2014-10-03 17:17:40 +04:00
|
|
|
endif()
|
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
add_library(${MODULE_NAME} ${WINPR_SRCS})
|
|
|
|
set_target_properties(${MODULE_NAME} PROPERTIES LINKER_LANGUAGE C)
|
2016-12-21 17:25:03 +03:00
|
|
|
set_target_properties(${MODULE_NAME} PROPERTIES OUTPUT_NAME ${MODULE_NAME}${WINPR_API_VERSION})
|
2014-04-29 11:42:18 +04:00
|
|
|
if (WITH_LIBRARY_VERSIONING)
|
2016-01-13 19:37:19 +03:00
|
|
|
set_target_properties(${MODULE_NAME} PROPERTIES VERSION ${WINPR_VERSION} SOVERSION ${WINPR_API_VERSION})
|
2014-04-29 11:42:18 +04:00
|
|
|
endif()
|
2014-09-15 12:30:07 +04:00
|
|
|
|
2014-07-10 02:03:20 +04:00
|
|
|
add_definitions(${WINPR_DEFINITIONS})
|
2016-03-25 18:28:17 +03:00
|
|
|
if (WIN32)
|
|
|
|
target_link_libraries(${MODULE_NAME} ${PUBLIC_KEYWORD} ${WINPR_LIBS})
|
|
|
|
else()
|
|
|
|
target_link_libraries(${MODULE_NAME} ${PRIVATE_KEYWORD} ${WINPR_LIBS})
|
|
|
|
endif(WIN32)
|
2014-07-10 02:03:20 +04:00
|
|
|
install(TARGETS ${MODULE_NAME} DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT libraries EXPORT WinPRTargets)
|
2015-07-31 12:35:54 +03:00
|
|
|
if (WITH_DEBUG_SYMBOLS AND MSVC AND BUILD_SHARED_LIBS)
|
2017-01-31 15:32:51 +03:00
|
|
|
get_target_property(OUTPUT_FILENAME ${MODULE_NAME} OUTPUT_NAME)
|
|
|
|
install(FILES ${CMAKE_PDB_BINARY_DIR}/${OUTPUT_FILENAME}.pdb DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT symbols)
|
2015-07-31 12:35:54 +03:00
|
|
|
endif()
|
2014-07-10 02:03:20 +04:00
|
|
|
set_property(TARGET ${MODULE_NAME} PROPERTY FOLDER "WinPR/libwinpr")
|