user1615898
user1615898

Reputation: 1233

Can javapackager package Windows app from a Mac?

Can javapackager (https://docs.oracle.com/javase/9/tools/javapackager.htm#JSWOR719) package Windows app from a Mac, or does one need to actually install Windows?

Upvotes: 0

Views: 715

Answers (1)

Pavlus
Pavlus

Reputation: 1711

From Oracle docs:

Self-contained application packages are platform-specific and can only be produced for the same system on which you build. To deliver self-contained application packages on Windows, Linux, and OS X, you must build your project on all three platforms.

https://docs.oracle.com/javase/8/docs/technotes/guides/deploy/self-contained-packaging.html#A1307236

Upvotes: 1

Related Questions