summaryrefslogtreecommitdiff
path: root/android/settings.gradle
blob: 995e549e0a7546148a53e8e7912a316b3fa79a3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// **********************************************************************
//
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

apply from: "$rootProject.projectDir/gradle/tests.gradle"

tests.each {
	include ":test_Ice_${it}"
	project(":test_Ice_${it}").projectDir = new File("test/src/test_Ice_${it}")
}

// Main source
include ':ice'
project(':ice').projectDir = new File('src/Ice')
include	':icebox'
project(':icebox').projectDir = new File('src/IceBox')
include	':glacier2'
project(':glacier2').projectDir = new File('src/Glacier2')
include	':icepatch2'
project(':icepatch2').projectDir = new File('src/IcePatch2')
include	':icestorm'
project(':icestorm').projectDir = new File('src/IceStorm')
include	':icegrid'
project(':icegrid').projectDir = new File('src/IceGrid')

include ':test', ':testPlugins', ':testApp'

project(':test').projectDir = new File('test')
project(':testPlugins').projectDir = new File('test/plugins')
project(':testApp').projectDir = new File('test/android')