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
|
|
|
#
|
2012-08-14 15:49:39 -04:00
|
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2012-05-05 22:09:08 -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.
|
|
|
|
|
|
2012-08-14 15:49:39 -04:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include PARENT_SCOPE)
|
2012-07-31 15:22:10 -05:00
|
|
|
|
2012-08-14 15:49:39 -04:00
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/winpr/config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/include/winpr/config.h)
|
2012-08-14 14:37:31 -04:00
|
|
|
|
2012-08-14 19:55:48 -04:00
|
|
|
add_subdirectory(include)
|
|
|
|
|
|
2012-08-14 15:49:39 -04:00
|
|
|
add_subdirectory(libwinpr)
|
2012-08-14 14:37:31 -04:00
|
|
|
|
2012-06-02 18:21:04 -04:00
|
|
|
add_subdirectory(tools)
|
2012-08-14 15:49:39 -04:00
|
|
|
|