ISWIX, LLC View Christopher Painter's profile on LinkedIn profile for Christopher Painter at Stack Overflow, Q&A for professional and enthusiast programmers

August 24, 2009

Specifying Source Files

I've been spending a lot of time lately thinking about use cases for source file location abstractions. Some tools like Visual Studio Deployment Projects provide no abstraction and other tools such as InstallShield provide abstractions (Path Variables) based on environment variables, registry values and/or command line arguments.

Then there is Wix can use different types of compiler inferences and preprocessor variables and/or extensions.

Obviously this can get very complicated so I'm curious, what is your favorite way to roll and why? What do you need and what could you live without?

5 comments:

Anonymous said...

I like the way WiX does it.

Christopher Painter said...

WiX can do it many, many ways. Which way are you using WiX that you like? I need details otherwise your comment is just useless fanboyism.

Stefan Kuhr said...

I dunno if this is what you mean, but on my dev machines and my WiX scripts I specify source file locations like this:

\\127.0.0.1\applic$\project-name\bin\filename

This way, the parent directory of all projects (the share named applic$) can be wherever it wants to be on each dev machine. Is this what you were asking for?

Colbey said...

I write build scripts for Installshield and Wise. At its simplest I have used drive mappings to different areas with a predefined file and folder structure to enable the building of different versions of the product with the same source file and build script with minor configuration changes that can happen at build time.

The most sophisticated involved build scripts that supported full wild card selections of files and folders from specified areas and insertion into the msi at build time. This allowed for far more flexible install development as the developers could simply add additional files to the build area and they would be picked up by the install, ideal for rapid development for proof of concepts for example but needs to be carefully managed or it can get out of control.

Is that what you’re asking for?

Christopher Painter said...

Yes, these are the types of stories that I'm looking for.

(I know how I roll, but I'd like to hear how others do.)