Android: Install gradle templates
Install the required gradle templates for the android deployment tool to work correctly. Change-Id: I1b18235c354dbea2d4b47ce1d8146a477676a6cb Reviewed-by: Qt CMake Build Bot Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
This commit is contained in:
parent
bb959af00a
commit
60c2f9f3b4
6
src/3rdparty/CMakeLists.txt
vendored
6
src/3rdparty/CMakeLists.txt
vendored
@ -1,3 +1,9 @@
|
|||||||
add_subdirectory(tinycbor)
|
add_subdirectory(tinycbor)
|
||||||
add_subdirectory(harfbuzz)
|
add_subdirectory(harfbuzz)
|
||||||
add_subdirectory(double-conversion)
|
add_subdirectory(double-conversion)
|
||||||
|
|
||||||
|
#special case begin
|
||||||
|
if (ANDROID)
|
||||||
|
add_subdirectory(gradle)
|
||||||
|
endif()
|
||||||
|
#special case end
|
||||||
|
20
src/3rdparty/gradle/CMakeLists.txt
vendored
Normal file
20
src/3rdparty/gradle/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# special case begin
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES
|
||||||
|
gradlew
|
||||||
|
gradlew.bat
|
||||||
|
DESTINATION
|
||||||
|
src/3rdparty/gradle
|
||||||
|
COMPONENT
|
||||||
|
Devel)
|
||||||
|
|
||||||
|
install(
|
||||||
|
DIRECTORY
|
||||||
|
gradle
|
||||||
|
DESTINATION
|
||||||
|
src/3rdparty/gradle
|
||||||
|
COMPONENT
|
||||||
|
Devel)
|
||||||
|
|
||||||
|
# special case end
|
Loading…
Reference in New Issue
Block a user