I'm not familiar with `kotlin-native`, and I just ...
# kontributors
s
I'm not familiar with
kotlin-native
, and I just opened
KlibToolLogger.kt
resides in
kotlin-native/klib/src/org/jetbrains/kotlin/cli/klib/
and I noticed that there is no code inspection support or syntax error reporting in IDE. Is this intentional or have I not configured it correctly?
d
You need to add the following line to
local.properties
and reimport the project
Copy code
kotlin.native.enabled=true
Native part is disabled in project by default, as it not optimized yet in build process, which complicates gradle builds of the project even if the developer doesn't work with anything from Native
thank you color 1