2012-05-05 22:09:08 -04:00
|
|
|
# WinPR: Windows Portable Runtime
|
2012-05-20 20:54:22 -04:00
|
|
|
# winpr cmake build script
|
2012-05-05 22:09:08 -04:00
|
|
|
#
|
|
|
|
|
# Copyright 2011 O.S. Systems Software Ltda.
|
|
|
|
|
# Copyright 2011 Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
# Copyright 2011 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.
|
|
|
|
|
|
2012-07-31 15:22:10 -05:00
|
|
|
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.
|
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-flat_namespace,-undefined,warning")
|
|
|
|
|
endif()
|
|
|
|
|
|
2012-08-14 14:37:31 -04:00
|
|
|
if(WITH_MONOLITHIC_BUILD)
|
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
|
endif()
|
|
|
|
|
|
2012-05-20 20:54:22 -04:00
|
|
|
add_subdirectory(crt)
|
2012-05-24 17:05:12 -04:00
|
|
|
add_subdirectory(utils)
|
2012-05-29 14:14:26 -04:00
|
|
|
add_subdirectory(heap)
|
|
|
|
|
add_subdirectory(handle)
|
|
|
|
|
add_subdirectory(synch)
|
2012-06-18 22:22:39 -04:00
|
|
|
add_subdirectory(sysinfo)
|
2012-05-25 16:01:18 -04:00
|
|
|
add_subdirectory(bcrypt)
|
2012-06-18 22:41:37 -04:00
|
|
|
add_subdirectory(dsparse)
|
2012-07-05 16:36:47 -04:00
|
|
|
add_subdirectory(asn1)
|
2012-05-20 20:54:22 -04:00
|
|
|
add_subdirectory(rpc)
|
2012-06-19 10:19:53 -04:00
|
|
|
add_subdirectory(sspicli)
|
2012-05-20 20:54:22 -04:00
|
|
|
add_subdirectory(sspi)
|
2012-05-21 22:34:42 -04:00
|
|
|
add_subdirectory(registry)
|
2012-08-10 18:05:37 -04:00
|
|
|
add_subdirectory(library)
|
2012-05-05 22:09:08 -04:00
|
|
|
|
2012-08-14 14:37:31 -04:00
|
|
|
if(WITH_MONOLITHIC_BUILD)
|
|
|
|
|
add_library(winpr
|
|
|
|
|
$<TARGET_OBJECTS:winpr-crt>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-utils>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-heap>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-handle>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-synch>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-sysinfo>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-bcrypt>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-dsparse>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-asn1>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-rpc>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-sspicli>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-sspi>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-registry>
|
|
|
|
|
$<TARGET_OBJECTS:winpr-library>)
|
|
|
|
|
|
|
|
|
|
target_link_libraries(winpr ${WINPR_LIBS})
|
|
|
|
|
endif()
|
|
|
|
|
|
2012-06-02 18:21:04 -04:00
|
|
|
add_subdirectory(tools)
|