I compiled Hello World sample from CLion, but on O...
# kotlin-native
a
I compiled Hello World sample from CLion, but on OSX the executable size is 7M. How can I make it smaller?
s
That’s a debug build i think.
Add
set(CMAKE_BUILD_TYPE Release)
to your cmake file and try it
👍 1
a
Thanks! This reduced its size to 200k