blob: 23ff320f847071386940ad0df8b1384e545839e6 [file] [log] [blame]
Roman Elizarov26af9192017-09-21 18:12:04 +03001/*
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 Startsevd79fb1f2017-09-15 18:02:59 +030017rootProject.name = 'kotlinx-serialization-runtime'
Leonid Startsev00dd4f52017-08-23 16:09:21 +030018
19include ':common'
20include ':jvm'
Leonid Startsevba913be2017-09-19 20:52:29 +030021include ':js'
Leonid Startsev88185402018-02-01 16:03:25 +030022include ':configparser'
Leonid Startsevba913be2017-09-19 20:52:29 +030023
24project(':common').projectDir = file('./runtime/common')
25project(':jvm').projectDir = file('./runtime/jvm')
26project(':js').projectDir = file('./runtime/js')
Leonid Startsev88185402018-02-01 16:03:25 +030027project(':configparser').projectDir = file('./formats/config')