summaryrefslogtreecommitdiff
path: root/java/android/settings.gradle
blob: 65e92cc9b28c7b5a4fa53355e147cb01907e1df1 (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
// **********************************************************************
//
// Copyright (c) 2003-2017 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"

// Main source
include ':ice'
project(':ice').projectDir = new File('src/Ice')
include ':icessl'
project(':icessl').projectDir = new File('src/IceSSL')
include ':icediscovery'
project(':icediscovery').projectDir = new File('src/IceDiscovery')
include ':icebt'
project(':icebt').projectDir = new File('src/IceBT')
include ':test', ':testController'
project(':test').projectDir = new File('test')
project(':testController').projectDir = new File('controller')
tests.each {
    def name = it.replace("/", "_")
    include ":test_${name}"
    project(":test_${name}").projectDir = new File("test/src/test_${name}")
}