The sequence of actions required to construct a software product or executable application, or the system which performs such actions.

learn more… | top users | synonyms

1
vote
1answer
87 views

Deploying an Application on Mac OS X doesn't work

I can build a project and have it run fine on my computer but when I run it on different computers it wont work. How can I build it with Qt so that all files libraries get included? I am following ...
0
votes
0answers
36 views

How to properly interact with git repository inside heroku custom buildpack?

I am setting up build process of our node.js app on heroku. I'd like to prefix my static file directory with the date of last modification on static file directory. I am doing that by inspecting git ...
1
vote
2answers
63 views

How to print the build target in Java?

Say we have a class PrintTarget with main() inside of it. Can we build/compile such that , somehow we should be able to send the build-target-name inside of the main. and when the main() is called ...
1
vote
2answers
127 views

In a post build script how to check if the system is a 64 or 32 bit

In Visual Studio 2010, in a post build script, I need to copy one of these files to the "bin" dir: myLib32.dll or myLib64.dll depending on the architecture of my machine. Is there a way to check ...
1
vote
1answer
250 views

Dojo build profile.layers vs. profile.dependencies.layers?

Wow, this is totally confusing and the dojo 1.8 documentation seems a complete clusterf**k around build layers. Anybody have a clue what's going on there? In the build script example profiles, the ...
1
vote
1answer
111 views

Build two VS2010 C++ projects into the same output folder

I have two projects in the same VS 2010 solution. They are reusing same code and I want VS2010 to build both projects' Executables into the same output folder. Apparently this is not trivial even ...
1
vote
1answer
133 views

creating a collection variable in MSBuild .targets

Context An annoying Excel add-in compilation bug exists and the only way I am currently able to work around it is by editing the VSTO MSBuild .targets file C:\Program ...
1
vote
1answer
39 views

Entity Project Build Time

We have one solution with multiple projects. One project has our entity model with 200+ tables. Each time I build that project, VS 2012 takes too long at the "Build started" status till it continues ...
1
vote
1answer
203 views

Incredibuild not very fast

Our project takes a long time to compile, so I'm trying the trial version of Incredibuild. It is made of a solution of about 50 projects. The thing is, when I compile with incredibuild it doesn't go ...
1
vote
2answers
94 views

Prevent Eclipse from building .xml files

I recently had a complete new install of my (archlinux) System. For that reason I installed the latest Eclipse (JUNO 4.2.1 and I regret it) along with the latest ADT Plugin(SDK rev 21). Now I'm ...
1
vote
0answers
21 views

Build system supports multiple output per target

I work in the field of bioinformatics. My daily work processes several data files (DNA sequences, alignments, etc..) and produce many result files, so I want to use something like Unix make to ...
2
votes
1answer
74 views

Maven builds on file changes

Is there anything already out there that would help with either / both of following? Perform a Maven install when a file within that module changes Perform a Maven install on the module and its ...
0
votes
1answer
71 views

Jenkins / Hudson automatically permute parameter values of parameterized builds

I have a parameterized build that has some options as to how to build the project. For example: color: red, green or blue package: yes, no Since this list is likely to grow and I would like to be ...
0
votes
2answers
83 views

ForceBuild concern with this scenario - CruiseControl.NET

I have three projects in question, lets call them A, B and C. Where 'A' just prepares a cetain build scenario for B, which is the main build. C cleans up the scenario and basically resets B to its ...
1
vote
1answer
677 views

Xcode 4: Project does not honor $(inherited) Build Setting in Workspace?

Today is my day to suffer through Xcode 4, Workspaces, and Projects. I have a workspace with a few open source libraries (openssl, sqlcipher, and a couple of others). Within the workspace there is ...
2
votes
1answer
212 views

XCode - Changes to static libraries doesn't cause the build system to relink the executable

I have a project "blackjack" containing a project (as a child) called "GameLib", which in turn contains many projects such as "Core-iOS". I have libCore-iOS.a added to "Link Binary With Libraries," ...
4
votes
2answers
159 views

Version Numbers in a project with Qt

Version numbers are needed all over a project; in installers, code, toolchains etc. I despise duplication. I want my version numbers to be stored in one central authoritative location. I am working ...
6
votes
3answers
300 views

GCC build time doesn't benefit much from precompiled headers

I have a huge project, something about 150 000 LOC of C++ code. Build time is something about 15 minutes. This project consists of many sub-projects of different sizes. I have built separate ...
4
votes
0answers
160 views

Is there a way to programmatically generate an ovf file that can be used to kickstart an iso image on boot?

Similar to genisofs I want to be able to run a command on a box with minimal additional services and create an ovf and associated data files that reference an iso image and can be used to kickstart a ...
1
vote
1answer
341 views

WinCE : What does mean the error: U1073: don't know how to make

After trying to build a WinCE OS image for ARM V4 I encountered the following error NMAKE : fatal error U1073: don't know how to make 'C:\WINCE600\public\common\oak\lib\ARMV4I\retail\lmemhs.lib' ...
1
vote
1answer
50 views

Is it possible to tell if a .net application was developed with unlicensed Visual Studio?

We contracted a guy to build .net app. His team is in India, and am afraid they may not have licensed softwares their, which may eventually get us in troubles. Is their anyway I can tell if the end ...
0
votes
1answer
1k views

Can't build C++ program using Sublime Text 2, Windows 8

I think many of you are using or used to use Sublime Text 2 editor, on windows 8. I have strange error: C++ programs can't be built. My goal is to use Sublime Text 2 to build and run simple programs, ...
3
votes
1answer
599 views

Step by step, how do I add a custom build step for every file of a given type in Visual Studio 2010?

The Problem I have a bunch of custom files in a visual studio 2010 project. I need to run a tool on those custom files when they change. The tool generates .h files included by existing .cpp files. ...
1
vote
3answers
96 views

Build only changed item or build all ,which is preferred in continuous integration?

Our software is split into multiple components. Msbuild scripts automate our build and batch scripts to invoke it. We are taking the daily build of our components even if we have small changes. We ...
0
votes
1answer
54 views

Build system for compiling multiple GNU Autotools projects

I'm looking for a process to build multiple GNU autotools based projects that are all located in separate source control. I'm looking for a build framework that I can supply something along the lines ...
-1
votes
1answer
388 views

g++ No such file or directory sublime text [closed]

Trying to compile hello world on windows 8, using Sublime Text 2, get the following error: g++: : No such file or directory g++: No input files [Finished in 0.7s with exit code 1] Thanks for the ...
0
votes
4answers
5k views

How to build and run c++ programs in Sublime Text 2, Windows 8?

I am a novice programmer. I have installed Codeblocks with mingw (dont really know what that means), chose default compiler, and could build and run fine. I installed Sublime Text 2, copy pasted ...
0
votes
2answers
103 views

.NET Building Process - Github/Git and Dependent Projects

I'm currently using Github/Git for two .NET solutions. The first solution is a library of common .NET code for all projects at my company, the second solution is a ASP.NET MVC Web Application. What ...
3
votes
1answer
147 views

Including a jar manifest's classpath in a grails app

I'm writing a grails application (A) that uses a jar (B) from another project. The jar, B, has internal dependancies that are needed at runtime. Here's its manifest: Manifest-Version: 1.0 ...
1
vote
1answer
153 views

Sublime Text 2 OS specific Run configuration?

I would like to create 4 build options for building Actionscript files. One for Building and one for Running in Linux, and the same for Windows. Is it possible to do this? Currently it seems ...
1
vote
1answer
102 views

Git Workflow: selecting features to release from QA to PROD

I am a novice in Git and I would like to know if this idea is even possible using such a SCM. My idea would be to have the DEV team working on features locally, then push those features to QA. At ...
1
vote
2answers
236 views

Continue where ANT stopped after build error

I have an ant build script that builds many android projects. I am building all the projects in a specific order given to me by a property in a text file. The ant build script calls each project's ...
0
votes
1answer
52 views

CPPFLAGS equivalent in Xcode project

So I'm trying to port a make file to Xcode. Not sure where to put stuff from CPPFLAGS. Currently CPPFLAGS = -I../src/ meaning that the preprocessor will append ../src/ to the include directives while ...
2
votes
1answer
2k views

Using grunt js, how can I dynamically add the <title> to static html files?

More specifically, I want to add the titles by referencing an external JSON file, let's call it titles.json. One of the things I use grunt for is to build static HTML files for design and debugging. ...
0
votes
1answer
313 views

Opencv Building Error

Im trying to setup Opencv with cuda=on on ubuntu 12.04. I did cmake Opencv with all settings which I want without any problem and my Cuda toolkit is working smooth. However, when I come make step of ...
1
vote
2answers
2k views

Define Maven plugins in parent pom, but only invoke plugins in child projects

I have a set of projects which all need to run the same series of Maven plugin executions during their builds. I'd like to avoid re-declaring all of this configuration in every project, so I made ...
0
votes
0answers
98 views

Trouble Building Android from a Shadow Copy

I am trying to build Android from within shadow copy symlinked to the actual source code using lndir. The purpose of this is, I need to build Android for multiple targets from the same source code and ...
1
vote
1answer
290 views

Reorder compile tasks in gradle's build task

I am trying to build my project that has some java source and clojure source code, in a directory structure like the following: src `-- main |-- clojure | `-- appc | `-- core.clj ...
0
votes
0answers
55 views

stasm build error in windows environment

I tried building stasm in my windows machine using mingw and am getting the errors mentioned as in this link. Can any one provide me some tips on how to solve it? And I used this make file to build. ...
1
vote
1answer
111 views

Make the web application auto-determine and know its version

My team are doing with 2 teams: server team and client team. We at server team will provide APIs for the client team to call. The APIs have many version, so that we need to match the server build and ...
4
votes
2answers
216 views

ant regex for android package names

in my android project all of my .java view files import the R file based on the name of the current package. When I change the name of my package name in the Android Manifest (dynamically, not ...
4
votes
1answer
572 views

Gradle: War Task has Conflicting Includes/Excludes

I am trying to build a war file with Gradle, but I'm having an issue excluding one directory and including another that happen to have the same names, but different parent directories. Please notice ...
4
votes
1answer
1k views

Output content file to specific folder while building project

I have VS 2012 project with structure like this: Project Folder1 file.xml schema.xsd code.cs Folder2 code1.cs code2.cs I set Copy to output directory property of ...
1
vote
1answer
31 views

Build Action of Database

I have a WPF application. My question is What should be the build action for the database in my case. I have a database but every time I build my solution the database entries are removed and a new ...
0
votes
0answers
163 views

why i failed to build mysql using cmake on windows?

mysql is a nice piece of code which worth study:) now i am about to build mysql on windows 7 x64 system using vs 2010. in fact, i failed to build mysql on windows both using cmake and visual studio ...
0
votes
0answers
49 views

Lost references and multiple Com enteries

I keep losing references to our DLLs anytime I rebuild our entire source directory. Our projects have multiple DLL projects which some use COM and others are just .Net DLLs. I have a batch script ...
2
votes
3answers
2k views

Automated Slow Cheetah Build methods

I don't want to install Slow Cheetah on all the build servers. We are using Slow Cheetah for config transformations and it is working perfectly fine. It generates multiple app.config files and we ...
1
vote
1answer
179 views

CoffeeScript build setup that supports unit testing?

I want to use CoffeeScript for building what will essentially be a JavaScript library. I would just like to be able to define some classes, with inheritance keep my code in several files write ...
2
votes
3answers
137 views

Building a database from SQL files

This is for a project in a databases course, so I'm trying to avoid things like EF Code First that let me pretend that databases don't actually exist and data just magically persists. Basically I ...
1
vote
1answer
49 views

How to copy files from the package to the main codebase?

I have got a plugin package to enhance the working of our product. This package contain some additional files and some modified main code-base repository files. But we can't directly merge this ...

1 2 3 4 5 33