Roman Elizarov | 26af919 | 2017-09-21 18:12:04 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 JetBrains s.r.o. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Leonid Startsev | d79fb1f | 2017-09-15 18:02:59 +0300 | [diff] [blame] | 17 | rootProject.name = 'kotlinx-serialization-runtime' |
Leonid Startsev | 00dd4f5 | 2017-08-23 16:09:21 +0300 | [diff] [blame] | 18 | |
| 19 | include ':common' |
| 20 | include ':jvm' |
Leonid Startsev | ba913be | 2017-09-19 20:52:29 +0300 | [diff] [blame] | 21 | include ':js' |
Leonid Startsev | 8818540 | 2018-02-01 16:03:25 +0300 | [diff] [blame] | 22 | include ':configparser' |
Leonid Startsev | ba913be | 2017-09-19 20:52:29 +0300 | [diff] [blame] | 23 | |
| 24 | project(':common').projectDir = file('./runtime/common') |
| 25 | project(':jvm').projectDir = file('./runtime/jvm') |
| 26 | project(':js').projectDir = file('./runtime/js') |
Leonid Startsev | 8818540 | 2018-02-01 16:03:25 +0300 | [diff] [blame] | 27 | project(':configparser').projectDir = file('./formats/config') |