FIR: Add module for new types aka 'cones' (of fir tree)

Start of KT-24063
This commit is contained in:
Simon Ogorodnik
2018-03-20 01:17:40 +03:00
committed by Mikhail Glukhikh
parent 9daa84c5a9
commit 12acbaaa21
4 changed files with 25 additions and 10 deletions
+22
View File
@@ -0,0 +1,22 @@
/*
* Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the license/LICENSE.txt file.
*/
plugins {
kotlin("jvm")
id("jps-compatible")
}
jvmTarget = "1.6"
dependencies {
compile(project(":core:descriptors"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "annotations") }
}
sourceSets {
"main" { projectDefault() }
"test" {}
}