Giel
Giel

Reputation: 2076

Run Delphi program on OS X from MSBuild

Most of our automated builds runs on Windows, but OS X is needed for generating the help file index and code signing. Is there a way to run a Delphi program on OS X from MSBuild? It's very simple to do this from within the IDE, but I'd like to automate it.

Upvotes: 3

Views: 203

Answers (1)

mjn
mjn

Reputation: 36634

For automation with multi-platform build steps, I highly recommend a CI tool like Hudson / Jenkins.

You can assign a build task to a specific agent which is running on OSX. Components of the build will be created on the correct operating system.

If your target is full build automation, CI tools are worth a look or two.

Upvotes: 3

Related Questions