FreeRDP/include/CMakeLists.txt

33 lines
1.5 KiB
CMake
Raw Normal View History

2012-10-09 07:02:04 +04:00
# FreeRDP: A Remote Desktop Protocol Implementation
2011-07-02 21:58:55 +04:00
# include headers cmake build script
#
# 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.
2011-07-01 04:31:07 +04:00
2022-02-16 13:20:38 +03:00
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config/version.h.in ${CMAKE_CURRENT_BINARY_DIR}/freerdp/version.h)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config/build-config.h.in ${CMAKE_CURRENT_BINARY_DIR}/freerdp/build-config.h)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/freerdp/config.h)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config/buildflags.h.in ${CMAKE_CURRENT_BINARY_DIR}/freerdp/buildflags.h)
2022-02-21 18:16:22 +03:00
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/freerdp
2022-02-16 13:20:38 +03:00
DESTINATION ${FREERDP_INCLUDE_DIR}
FILES_MATCHING PATTERN "*.h")
2022-02-21 18:16:22 +03:00
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/freerdp
2022-02-16 13:20:38 +03:00
DESTINATION ${FREERDP_INCLUDE_DIR}
FILES_MATCHING PATTERN "*.h")