Woodrow Douglass
Woodrow Douglass

Reputation: 2655

MSI Installer for Cygwin Application

I've been looking around the internet, and I can't find a solution to the following question:

I have authored a program in C using cygwin. It is actually a port of a linux app, and makes heavy use of cygwin's posix emulation. How can i package this program into an MSI? is there a way to do it without resorting to Microsoft Visual Studio?

Upvotes: 2

Views: 2135

Answers (1)

Cosmin
Cosmin

Reputation: 21416

An MSI package can be created in multiple ways:

For MSI packages it doesn't matter how the application was developed or what it uses. Just make sure that you include all your application dependencies and configure them correctly during install.

Upvotes: 1

Related Questions