build: llvmInstallPath becomes /opt/local/libexec/llvm-3.8

NOTE: if for some reasons you need to redefine this values,
please add it to local.property
This commit is contained in:
Vasily Levchenko
2016-09-28 17:54:08 +03:00
parent 3ca8133571
commit f96884b60a
2 changed files with 6 additions and 3 deletions
+5 -3
View File
@@ -1,5 +1,7 @@
ant.importBuild 'backend.native/kotlin-ir/build.xml'
Properties props = new Properties()
props.load(new FileInputStream("$project.rootDir/local.properties"))
props.each {prop -> project.ext.set(prop.key, prop.value)}
if (new File("$project.rootDir/local.properties").exists()) {
Properties props = new Properties()
props.load(new FileInputStream("$project.rootDir/local.properties"))
props.each {prop -> project.ext.set(prop.key, prop.value)}
}
+1
View File
@@ -1 +1,2 @@
kotlin_version=1.0.4
llvmInstallPath=/opt/local/libexec/llvm-3.8