blob: ebe9b165ee9e05882337ec5da18bbaa8523d3bca [file] [log] [blame]
Kirill Timofeeva5186962017-10-25 14:25:47 +03001rootProject.name = 'kotlinx.coroutines'
2
Roman Elizarov31452902018-04-11 13:58:19 +03003def module(String path) {
4 int i = path.lastIndexOf('/')
5 def name = path.substring(i + 1)
6 include(name)
7 project(":$name").projectDir = file(path)
8}
Roman Elizarove1c0b652017-12-01 14:02:57 +03009
Roman Elizarov31452902018-04-11 13:58:19 +030010// ---------------------------
Kirill Timofeeva5186962017-10-25 14:25:47 +030011
Roman Elizarov31452902018-04-11 13:58:19 +030012include('benchmarks')
13include('knit')
14include('site')
Kirill Timofeeva5186962017-10-25 14:25:47 +030015
Roman Elizarov31452902018-04-11 13:58:19 +030016module('common/kotlinx-coroutines-core-common')
Kirill Timofeeva5186962017-10-25 14:25:47 +030017
Roman Elizarov31452902018-04-11 13:58:19 +030018module('core/kotlinx-coroutines-core')
19module('core/kotlinx-coroutines-io')
Kirill Timofeeva5186962017-10-25 14:25:47 +030020
Roman Elizarov31452902018-04-11 13:58:19 +030021module('integration/kotlinx-coroutines-guava')
22module('integration/kotlinx-coroutines-jdk8')
23module('integration/kotlinx-coroutines-nio')
24module('integration/kotlinx-coroutines-quasar')
Roman Elizarove1c0b652017-12-01 14:02:57 +030025
Roman Elizarov31452902018-04-11 13:58:19 +030026module('reactive/kotlinx-coroutines-reactive')
27module('reactive/kotlinx-coroutines-reactor')
28module('reactive/kotlinx-coroutines-rx1')
29module('reactive/kotlinx-coroutines-rx2')
30module('reactive/kotlinx-coroutines-rx-example')
Kirill Timofeeva5186962017-10-25 14:25:47 +030031
Roman Elizarov31452902018-04-11 13:58:19 +030032module('ui/kotlinx-coroutines-android')
33module('ui/kotlinx-coroutines-javafx')
34module('ui/kotlinx-coroutines-swing')
35
36module('js/kotlinx-coroutines-core-js')
37module('js/js-stub')
38module('js/example-frontend-js')
39
40//module('native/kotlinx-coroutines-core-native')
41