When working with cinterop, is it expected that th...
# kotlin-native
s
When working with cinterop, is it expected that the generated klib and related build files will not be checked-in into vcs?
m
That is how I could do it. Leave the build files out of source control. Especially if you have CI/CD set up you would build those files as part of a release process and deploy the klib somewhere.
s
gotcha, thank you