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)

121
votes
13answers
51k views

NoClassDefFoundError - Eclipse and Android

I'm having a problem trying to run an Android app which, up until adding a second external library to its build path, was working fine. Since having added the scoreninja jar, I now get a ...
60
votes
5answers
31k 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 ...
182
votes
10answers
62k 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 ...
138
votes
6answers
51k views

What does the Visual Studio “Any CPU” target mean?

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 ...
90
votes
2answers
33k 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 ...
51
votes
6answers
11k 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: ...
17
votes
2answers
5k 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 ...
113
votes
4answers
26k 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?
36
votes
2answers
13k views

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

Possible Duplicate: How to tell if a .NET application was compiled in DEBUG or RELEASE mode? I'm sure this has been asked before, but google and SO search failed me. How can I identify if ...
91
votes
9answers
15k 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 ...
27
votes
3answers
24k views

Re-sign IPA (iPhone)

I currently build all my applications with hudson using xcodebuild followed by a xcrun without any problems I've received a couple of IPA files from different people that I would like to re-sign with ...
52
votes
3answers
47k 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: ...
12
votes
3answers
5k views

How to build Boost-Libraries for iPhone

Can someone tell me, where to find a detailed guide, how to build the Boost-Libraries for using it on the iPhone-Device. I've allready build the libs for Mac and can use them in my project (only on ...
4
votes
4answers
23k views

How do I build and install applications on a jailbroken iPhone without being in the iPhone Developer Program?

I would like to build and install my app on my jailbroken device without paying the $99 required for the iPhone Developer Program. I have Rock and Cydia... what is the easiest way to do it (if it's ...
25
votes
7answers
10k views

Using Visual Studio project properties effectively 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 ...
1
vote
4answers
2k views

Asp.net release build vs debug build

How do I determine if my app was compiled as "release" instead of "debug"? I went to VS 2008 Project Properties > Build and set the configuration from Debug to Release but I noticed no change? This is ...
73
votes
10answers
34k 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 ...
56
votes
8answers
11k 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...
18
votes
5answers
21k views

What's the correct way to configure XCode 4 workspaces to build dependencies when needed?

My case is simple, a workspace with two sibling projects: one main (iOS) app and a project that builds several static library targets used by the app. Here's how I have configured the build: ...
25
votes
3answers
28k 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 ...
22
votes
3answers
3k 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) ...
16
votes
13answers
20k 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 ...
5
votes
2answers
2k views

CorePlot failed to build in XCode 4.4

I am using CorePlot 0.3, everything was ok until I upgraded XCode to 4.4 (2 days ago), CorePlot failed to build and I got some errors with message: clang: error: -Z-reserved-lib-stdc++: 'linker' ...
5
votes
1answer
488 views

Skinning Android app with Maven build profiles

I've got mavenized Android application and customer wants support for the skinning at build time. For example: mvn clean install -P Developer, mvn clean install -P Customer1, mvn clean install -P ...
4
votes
3answers
3k views

Make ant quiet without the -q flag?

I have an ant buildfile that is often run from vastly different environments. By default, I'm looking for the same behavior as using: ant -q However, since some team member's configurations vary, ...
4
votes
3answers
41k views

Create provisioning profile in iphone application

How can i build provisioning profile for deploying an iPhone application?
87
votes
19answers
28k 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 ...
29
votes
8answers
9k views

Auto increment version code in Android app

is there a way to auto-increment the version code each time you build an Android application in Eclipse? According to http://developer.android.com/guide/publishing/versioning.html, you have to ...
34
votes
8answers
14k views

Building .NET 4 projects with Nant

How do I get nant to build projects that target the .NET 4.0 Framework?
23
votes
3answers
7k 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 ...
24
votes
3answers
12k 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 ...
34
votes
6answers
10k views

Visual Studio 2010 isn't building before a run when there are code changes. It was doing working yesterday

I've been using using F5 (Start Debugging) for years to build the code (if its out of date), and then debug. This was working on VS 2010 also, however today it just start debugging without a build. ...
24
votes
2answers
7k views

What are the obj and bin folders (created by Visual Studio) used for?

I created a new project in Visual Studio 2010 and noticed that there are now two new folders named obj and bin in my project directory. A similar pair of folders are created when building and ...
11
votes
4answers
4k views

How do I reference external jar files in a common directory (not libs) to build android project using ant?

I would like to build several android projects that reference the same jar files using ant. I do not want to copy the jar file to each libs directory in the project (due to how the source control tree ...
10
votes
7answers
21k views

Build Boost on Mac with Xcode

I've recently got acquainted with Boost library and I'd like to use it in my Xcode project. But sadly there is no HowTo or FAQ on how to do it :( What's the sequence of actions to build and use Boost ...
4
votes
4answers
258 views

IoC container, check for errors at compile time

I have a simple question. Let's say I have a .Net solution, with different projects like some class libraries (bll, dal, etc) and a main project which can be a web application or a wpf application, ...
6
votes
7answers
1k views

How do I find the current time and date at compilation time in .net/C# application?

I want to include the current time and date in a .net application so I can include it in the start up log to show the user what version they have. Is it possible to retrieve the current time during ...
3
votes
6answers
2k views

Handling dependencies in blackberry development

What is the best way to handle 3rd party dependencies in a .jad file? Is it possible to bundle a .jar? Do you need to unpack it and include the .class files?
9
votes
4answers
3k views

MANIFEST.in ignored on “python setup.py install” - no data files installed?

Here's my stripped-down setup.py script with non-code stuff removed: #!/usr/bin/env python from distutils.core import setup from whyteboard.misc import meta setup( name = 'Whyteboard', ...
2
votes
5answers
525 views

Building multiple executables with similar rules

I am writing something like an interactive tutorial for C++. The tutorial will consist of two parts: one is compiled into a library (I'm using Scons to build that), and the other (the lessons) is ...
1
vote
3answers
719 views

Speeding up the Android build process

This is a real noob question. I work for a company that makes 100's of apps that use much of the same components. There is some minor customization at build time and we would like to speed that up ...
3
votes
5answers
10k views

How to create executable .jar file with netbeans

I'd like to make "double-click" cli application but still don't get how. I know I should propably somehow edit manifest but that is all. I googled ofc. but no success. Thanks for any tips. Here is the ...
0
votes
1answer
391 views

I need help figuring out why Ant is giving me this error messages(setting up Java Pet Store)?

I have no idea where ContainerBaCommand is coming from, but here's my error: I first had to add javax.jar (which has the servlet ) class into the C:\JEE6SDKglassfish3\glassfish\lib\endorsed ...
48
votes
8answers
15k 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 ...
46
votes
7answers
4k 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 ...
18
votes
2answers
3k views

How can sbt pull dependency artifacts from git?

I've heard (and I know I've seen examples too, if only I can remember where) that sbt can obtain dependencies from a git repo. I am looking to obtain the dependency harrah/up from github. The ...
21
votes
7answers
7k views

What is the difference between compile code and executable code?

I always use the terms compile and build interchangeably. What exactly do these terms stand for?
6
votes
5answers
6k views

Why are xcodebuild and Xcode 4.2 so slow?

I am using Xcode 4.2 on a relatively large project (a few ten thousand lines of code) and it is horribly slow. Editing is ok, but whenever I try to compile the project (in Xcode, or with xcodebuild on ...
28
votes
7answers
24k 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 ...
5
votes
1answer
3k views

How do I make a Jenkins job start after multiple simultaneous upstream jobs succeed?

In order to get the fastest feedback possible, we occasionally want Jenkins jobs to run in Parallel. Jenkins has the ability to start multiple downstream jobs (or 'fork' the pipeline) when a job ...

1 2 3 4 5 13