[KLIB] Take into account *.klib rebuild similar to *.jar
Fix multi-module incremental compilation. Fix allows to trigger klib rebuild when dependency changed.
This commit is contained in:
+5
@@ -41,6 +41,11 @@ abstract class ModulesApiHistoryBase(protected val modulesInfo: IncrementalModul
|
|||||||
extension.equals("jar", ignoreCase = true) -> {
|
extension.equals("jar", ignoreCase = true) -> {
|
||||||
jarFiles.add(file)
|
jarFiles.add(file)
|
||||||
}
|
}
|
||||||
|
extension.equals("klib", ignoreCase = true) -> {
|
||||||
|
// TODO: shouldn't jars and klibs be tracked separately?
|
||||||
|
// TODO: what to do with `in-directory` klib?
|
||||||
|
jarFiles.add(file)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user