The process of converting source code files into standalone software artifact(s) that can be run on a computer

learn more… | top users | synonyms (1)

102
votes
9answers
25k views

Xcode “Build and Archive” from command line

Xcode 3.2 provides an awesome new feature under the Build menu, "Build and Archive" which generates an .ipa file suitable for Ad Hoc distribution. You can also open the Organizer, go to "Archived ...
72
votes
6answers
25k views

Visual Studio “Any CPU” target

I have some confusion related to the .NET platform build options in Visual Studio 2008. What is the "Any CPU" compilation target, and what sort of files does it generate? I examined the output ...
65
votes
8answers
9k views

How and why do I set up a C# build machine?

I'm working with a small (4 person) development team on a C# project. I've proposed setting up a build machine which will do nightly builds and tests of the project, because I understand that this is ...
60
votes
1answer
10k views

How to build Qt for Visual Studio 2010

I struggled finding a how-to which provides a stable solution for using Qt with Visual Studio 2010, so after collecting all the bits of information and some trial and error, I would like to write my ...
47
votes
9answers
20k views

Build and Version Numbering for Java Projects (ant, cvs, hudson)

What are current best-practices for systematic build numbering and version number management in Java projects? Specifically: How to manage build numbers systematically in a distributed development ...
45
votes
3answers
9k views

Difference between Rebuild and Clean + Build in Visual Studio 2008

What is the difference between just a Rebuild and doing a Clean + Build in Visual Studio 2008? Is Clean + Build different then doing Clean + Rebuild?
39
votes
6answers
12k views

What's the best Scala build system?

I've seen questions about IDE's here -- Which is the best IDE for Scala development? and What is the current state of tooling for Scala?, but I've had mixed experiences with IDEs. Right now, I'm using ...
37
votes
2answers
3k views

.NET 4.0 build issues on CI server

Anybody manage to get .NET 4.0 applications compiling on a CI server without installing Visual Studio 2010 on a CI server? No SDK exists for .NET 4.0. Have installed .NET 4.0 on CI Server. ...
37
votes
8answers
6k views

Is there a Maven Alternative or port for the .NET world?

Is there a Maven Alternative or port for the .NET world? I would love to use a good dependency management system that the Java world has ... but i don't find anything comparable for .NET projects ... ...
37
votes
7answers
7k views

How do I manage building a Lite vs Paid version of an iPhone app?

I'm starting to get to the point where I want to consider building a lite version of my iPhone app. I've found a few things on the web that talk about the process a bit, namely: ...
35
votes
7answers
3k views

Embedding mercurial revision information in Visual Studio c# projects automatically

Original Problem In building our projects, I want the mercurial id of each repository to be embedded within the product(s) of that repository (the library, application or test application). I find ...
32
votes
1answer
10k views

Running a release build with xcode 4

I see how Xcode 4 splits the info on your targets nicely in one view, but how does one build and run these different builds. All I see are the options to build and to run, and these options to build ...
32
votes
4answers
9k views

Maven: add a dependency to a jar by relative path

I have a proprietary jar that I want to add to my pom as a dependency. But I don't want to add it to a repository. The reason is that I want my usual maven commands such as mvn compile, etc, to work ...
28
votes
7answers
9k views

Building .NET 4 projects with Nant

How do I get nant to build projects that target the .NET 4.0 Framework?
28
votes
12answers
2k views

How did you learn the GNU make tools?

I've been a professional web developer for about five years now, and have compiled many many things for servers. I've also written many simple C programs (one or two files). The main thing which has ...
26
votes
3answers
13k views

Ruby on Rails. How do I use the Active Record .build method in a :belongs to relationship?

I have been unable to find any documentation on the .build method in Rails. (I am currently using 2.0.2) Through experimentation it seems you can use the build method to add a record into a :has_many ...
25
votes
5answers
5k views

How to idenfiy if the DLL is Debug or Release build (in .NET)

I'm sure this has been asked before, but google and SO search failed me. How can I identify if a DLL is a release build or debug build?
24
votes
3answers
22k views

How to read an external properties file in Maven

Does anyone know how to read a x.properties file in Maven. I know there are ways to use resource filtering to read a properties file and set values from that, but I want a way in my pom.xml like: ...
23
votes
4answers
2k views

leiningen - how to add dependencies for local jars?

I want to use leiningen to build and develop my clojure project. Is there a way to modify project.clj to tell it to pick some jars from local directories? I have some proprietary jars that cannot be ...
22
votes
19answers
6k views

Xcode 4: Build Failed, No Issues

The app works fine in the simulator, builds and runs. When I attach my device (iPhone 3GS running iOS 4.3) and target the iPhone, the result is "Build failed" with "No issues". Looking at the build ...
20
votes
13answers
5k views

Visual Studio 2008 Unnecessary Project Building

I have a C# project which includes one exe and 11 library files. The exe references all the libraries, and lib1 may reference lib2, lib3, lib4, etc. If I make a change to a class in lib1 and built ...
19
votes
8answers
5k views

iOS5 Storyboard error: Storyboards are unavailable on iOS 4.3 and prior

I've built a small app using storyboards and it ran great. Just before final testing I decided to try it out to see if it runs on iOS 4.3. I clicked on the gray 5.0 in the project settings and ...
19
votes
3answers
326 views

What is the preferred way to structure and build OCaml projects?

It is unclear to newcomers to the ecosystem what is the canonically preferred way to structure and manage building small to medium sized OCaml projects. I understand the basics of ocamlc, ...
19
votes
8answers
6k views

sharing build artifacts between jobs in hudson

I'm trying to set up our build process in hudson. Job 1 will be a super fast (hopefully) continuous integration build job that will be built frequently. Job 2, will be responsible for running a ...
19
votes
8answers
3k views

Improving Your Build Process

Or, actually establishing a build process when there isn't much of one in place to begin with. Currently, that's pretty much the situation my group faces. We do web-app development primarily (but no ...
17
votes
6answers
11k views

Building Boost for static linking (MinGW)

I'm building Boost (I'm using System and FileSystem) for MinGW using bjam: bjam --toolset=gcc stage And it builds fine, but I want to be able to statically link to it (I have to have a single file ...
17
votes
5answers
1k views

Is there build farm for checking open source apps against different OS'es?

I have an Open Source app and I have it working on Windows, Linux and Macintosh ( it's in C++ and built with gcc ). I've only tested it on a few different flavors of Linux so I don't know if it ...
16
votes
3answers
3k views

ant to maven - multiple build targets

I have an ant build that is currently being converted to maven. However, the ant build has 2 build targets - one that builds the entire app, and one that builds a jar from some of those files (only a ...
16
votes
12answers
3k views

JavaScript Build Tools?

I'd like a tool that will: a) roll a bunch of separate js files into one b) minify my js Any ideas?
16
votes
5answers
1k views

Why is there no need for Maven in .NET?

I have the impression, that in the .NET-world, there is no real need for a Maven-like tool. I am aware that there is Byldan and NMaven (is it still alive?), but I have not yet seen a real-world ...
16
votes
5answers
6k views

Cruise Control .Net vs Team Foundation Build

Our team is setting up nightly and continuous integration builds. We own Team Foundation Server and could use Team Foundation Build. I'm more familiar with CC.Net and lean that way but management ...
15
votes
1answer
534 views

intermittent build problem in a WPF application

I have a large WPF solution running around for 2 years. Now we're running an automated build environment for that solution when the strangest thing happened. In 50% of our builds, I get this error: ...
15
votes
3answers
6k views

Where is set the active build configuration in Xcode 4

I have 3 configurations in my project (Debug, Distribution_AdHoc and Distribution_AppStore). In Xcode 3 we had a list to choose device, version, configuration and target before build and run. Now with ...
15
votes
6answers
3k views

Using Visual Studio project properties effectivly for multiple projects and configurations

I have always used Visual Studios built in GUI support for configuring my projects, often using property sheets so that several projects will use a common set. One of my main gripes with this is ...
15
votes
5answers
4k views

What is Maven artifact?

I am trying to understand Maven a little. Can someone please explain what is an artifact and why does Maven need them? Thank you, Maxim.
15
votes
4answers
3k views

Is there a way to dynamically load a properties file in NAnt?

I want to load a different properties file based upon one variable. Basically, if doing a dev build use this properties file, if doing a test build use this other properties file, and if doing a ...
14
votes
4answers
2k views

MVCBuildViews not working correctly

So I edited my .csproj file on an MVC 3 RTM application to set the following property: <MvcBuildViews>true</MvcBuildViews> This should cause my views to be complied during build and ...
14
votes
3answers
3k views

Visual Studio 2010 not autolinking static libraries from projects that are dependencies as it should be supposed to

Create a new solution with a C++ console command-line project Create a new project, a C++ static library Make the command-line project depend on the library Make sure "Link Library Dependencies" is ...
14
votes
5answers
3k views

#include all .cpp files into a single compilation unit?

I recently had cause to work with some Visual Studio C++ projects with the usual Debug and Release configurations, but also 'Release All' and 'Debug All', which I had never seen before. It turns out ...
14
votes
5answers
13k views

Copy all files and folders using msbuild

Just wondering if someone could help me with some msbuild scripts that I am trying to write. What I would like to do is copy all the files and sub folders from a folder to another folder using ...
13
votes
3answers
291 views

How to force VS 2010 to skip “builds” of projects which haven't changed?

Our product's solution has more than 100+ projects (500+ksloc of production code). Most of them are C# projects but we also have few using C++/CLI to bridge communication with native code. ...
13
votes
11answers
11k views

Android Packaging Problem: resources.ap_ does not exist

I am trying to fix a problem in Eclipse for like 3 hours and I haven't made any progress. Tomorrow is the customer coming to look at my app, and I have no time left. This is really frustrating! This ...
13
votes
3answers
987 views

Preventing referenced assembly PDB and XML files copied to output

I have a Visual Studio 2008 C#/.NET 3.5 project with a post build task to ZIP the contents. However I'm finding that I'm also getting the referenced assemblies' .pdb (debug) and .xml (documentation) ...
13
votes
3answers
14k views

Maven - how can I add an arbitrary classpath entry to a jar?

I have an unusual situation where I need to add an arbitrary classpath entry (that points to a jar file) into the manifest of an executable jar. (This is for a Swing desktop application.) The ...
13
votes
6answers
4k views

Is there a successor to Ant and Maven?

I ask out of ignorance. It's been over two years since I heard James Duncan Davidson say that Ant needed a successor, something more like a scripting language. It seemed that Maven 1/Jelly tried to ...
13
votes
12answers
652 views

How do you get up and running with a build server?

I think everyone here would agree that in order to be considered a professional software house there are number fundamental things you must have in place. There is no doubt that one of these things ...
12
votes
5answers
1k views

Visual Studio (C#) Build Output path using environmental variables

Is it possible to use environmental variables in the build output path in VS 2008 (et al)/ I'm trying to find a solution where several developers on my team using both Windows XP & 7 and all with ...
12
votes
2answers
340 views

Delphi XE build events.. globally?

Starting to make a lot of use out of the build events system in XE, but one thing I noticed is that I'm unable to set up default build events in the default project settings. Is there any sort of ...
12
votes
1answer
6k views

Can't change target platform to “any CPU”

Hey there. I work on a x86 pc and use .NET4.0 (same probelem witn 3.5) in VS2010. If i make a new Project (e.g. WinFormsApp), the first thing i want to do is to change the targetplatform of the ...
12
votes
7answers
3k views

How to decrease build times / speed up compile time in XCode?

What strategies can be used in general to decrease build times for any XCode project? I'm mostly interested in XCode specific strategies. I'm doing iPhone development using XCode, and my project is ...

1 2 3 4 5 62