49 lines
1.6 KiB
CMake
49 lines
1.6 KiB
CMake
# FreeRDP: A Remote Desktop Protocol Implementation
|
|
# Android Client
|
|
#
|
|
# Copyright 2013 Bernhard Miklautz <bmiklautz@thinstuff.at>
|
|
#
|
|
# 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.
|
|
|
|
set(ANDROID_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/aFreeRDP")
|
|
|
|
if(ANDROID_BUILD_JAVA)
|
|
if (NOT ANDROID_SDK)
|
|
message(FATAL_ERROR "ANDROID_SDK not set but required for building the java gui (ANDROID_BUILD_JAVA)")
|
|
endif()
|
|
# And isn't shiped with the android ndk/sdk so
|
|
# we need to find it on the local machine
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER, BOTH)
|
|
find_program(ANT_COMMAND ant)
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER, ONLY)
|
|
|
|
if(ANT_COMMAND STREQUAL "ANT_COMMAND-NOTFOUND")
|
|
message(FATAL_ERROR "ant not found but required to build android java")
|
|
endif()
|
|
|
|
if(ANDROID_BUILD_JAVA_DEBUG)
|
|
set(ANDROID_BUILD_TYPE "debug")
|
|
else()
|
|
set(ANDROID_BUILD_TYPE "release")
|
|
endif()
|
|
endif(ANDROID_BUILD_JAVA)
|
|
|
|
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
|
|
set(ANDROID_DEBUG_ENABLE "true")
|
|
else()
|
|
set(ANDROID_DEBUG_ENABLE "false")
|
|
endif()
|
|
|
|
add_subdirectory(FreeRDPCore)
|
|
add_subdirectory(aFreeRDP)
|