Files
FreeRDP/winpr/CMakeLists.txt

66 lines
2.0 KiB
CMake
Raw Normal View History

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.
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()
if(WITH_MONOLITHIC_BUILD)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
endif()
2012-05-20 20:54:22 -04:00
add_subdirectory(crt)
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)
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)
add_subdirectory(library)
2012-05-05 22:09:08 -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()
add_subdirectory(tools)