release-builds

How can I link against the debug/release libraries automatically in VC++ 6.0?

I am trying to maintain a program written 5 years ago in VC++ 6.0. It uses our 'common' libraries. The trouble I have is that it either links against the debug version of these libraries or the Release version, depending on whether I have the [Directories] for [library files] set to "common/debug" or "common/release" in [Tools]->[Options...

Partial builds versus full builds in Visual C++

For most of my development work with Visual C++, I am using partial builds, e.g. press F7 and only changed C++ files and their dependencies get rebuilt, followed by an incremental link. Before passing a version onto testing, I take the precaution of doing a full rebuild, which takes about 45 minutes on my current project. I have seen m...

Flex doesn't export resources to release build

I'm trying to set image source conditionaly using the following line: source="{data.muted ? '/assets/audioMuted.gif' : '/assets/audio.gif'}" Apps run fine when run from Flex builder, but when I try to export release build from Flex builder, those gif files are not exported. Does anybody have an idea what to do in this case. ...

Exporting release build - Flex through Intellij Idea

How do I generate release build of my Flex Application through IntelliJ Idea, like I do in Flex Builder? ...

Selecting the certain resource files into WAR from the default src/main/resources location with Maven

I am trying to control which files make into the WAR package that is created by mvn package goal. Specifically, I want to exclude some files from the default src/main/resources folder for each package (I am trying to do builds/package for different environments). I tried using maven-war-plugin but failed. If I add this configuration (fo...