2012-10-08 23:02:04 -04:00
|
|
|
# FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-18 16:06:32 +08:00
|
|
|
# FreeRDP Servers
|
|
|
|
#
|
2012-10-01 11:48:53 -04:00
|
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2011-08-18 16:06:32 +08: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.
|
|
|
|
|
|
|
|
# Servers
|
|
|
|
|
2012-10-14 03:43:10 -04:00
|
|
|
add_subdirectory(common)
|
|
|
|
|
2011-08-18 16:06:32 +08:00
|
|
|
if(NOT WIN32)
|
2012-10-13 20:55:28 -04:00
|
|
|
if(WITH_SAMPLE)
|
|
|
|
add_subdirectory(Sample)
|
|
|
|
endif()
|
2011-09-13 19:03:06 -04:00
|
|
|
|
2012-11-02 19:27:01 -04:00
|
|
|
if(WITH_X11)
|
2011-09-13 19:03:06 -04:00
|
|
|
add_subdirectory(X11)
|
|
|
|
endif()
|
2012-10-31 23:04:31 -04:00
|
|
|
|
2012-11-02 19:27:01 -04:00
|
|
|
if(APPLE AND (NOT IOS))
|
2012-10-31 23:04:31 -04:00
|
|
|
add_subdirectory(Mac)
|
|
|
|
endif()
|
2012-06-07 19:51:00 -04:00
|
|
|
else()
|
|
|
|
add_subdirectory(Windows)
|
2011-08-18 16:06:32 +08:00
|
|
|
endif()
|
2012-08-09 07:51:44 +08:00
|
|
|
|