2011-08-18 16:06:32 +08:00
|
|
|
# FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
if(NOT WIN32)
|
2011-09-13 19:03:06 -04:00
|
|
|
|
|
|
|
|
# Build Test Server
|
2012-10-01 11:48:53 -04:00
|
|
|
add_subdirectory(Sample)
|
2011-09-13 19:03:06 -04:00
|
|
|
|
|
|
|
|
# Build X11 Server
|
|
|
|
|
find_suggested_package(X11)
|
2012-01-23 14:19:40 +01:00
|
|
|
if(WITH_X11)
|
2011-09-13 19:03:06 -04:00
|
|
|
add_subdirectory(X11)
|
|
|
|
|
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
|
|
|
|