46 lines
1.7 KiB
CMake
46 lines
1.7 KiB
CMake
# FreeRDP: A Remote Desktop Protocol Implementation
|
|
# Android Client
|
|
#
|
|
# Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
# 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_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
set(ANDROID_PACKAGE_NAME "aFreeRDP")
|
|
|
|
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/AndroidManifest.xml.cmake ${CMAKE_CURRENT_SOURCE_DIR}/AndroidManifest.xml @ONLY)
|
|
|
|
if (ANDROID_SDK)
|
|
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/local.properties.cmake ${CMAKE_CURRENT_SOURCE_DIR}/local.properties @ONLY)
|
|
endif()
|
|
|
|
if(ANDROID_BUILD_JAVA)
|
|
if(ANDROID_BUILD_JAVA_DEBUG)
|
|
set(APK "${ANDROID_SOURCE_DIR}/bin/${ANDROID_PACKAGE_NAME}-release-unsigned.apk")
|
|
else()
|
|
set(APK "${ANDROID_SOURCE_DIR}/bin/${ANDROID_PACKAGE_NAME}-debug.apk")
|
|
endif()
|
|
|
|
# command to create the android package
|
|
add_custom_command(
|
|
OUTPUT "${APK}"
|
|
COMMAND ${ANT_COMMAND} ${ANDROID_BUILD_TYPE}
|
|
WORKING_DIRECTORY "${ANDROID_SOURCE_DIR}"
|
|
MAIN_DEPENDENCY AndroidManifest.xml
|
|
DEPENDS freerdp-android local.properties #android-lib
|
|
)
|
|
add_custom_target(android-package ALL SOURCES "${APK}")
|
|
SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "gen;bin")
|
|
endif()
|