How can I build only one target in multiplatform p...
# multiplatform
a
How can I build only one target in multiplatform project? I have
macosX64
and
linuxX64
and on macos building both. But I want to build only macos target
s
gradle tasks
can help you. It will show all possible tasks, including the one you looking for. It should be called something like
linkDebugExecutableMacosX64
.
👍 1