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

4
votes
1answer
81 views

Why cabal tool doesn't use Setup.lhs/Setup.hs?

I've added a putStrLn "Hello" line into main function of my Setup.lhs and was expecting to see it when running cabal configure or cabal build. But i did not. Then i've compiled Setup.lhs with ghc ...
1
vote
1answer
280 views

Using Grunt.js to Iterate Over Completely Unique but overlapping theme files

I'm using http://gruntjs.com/ to create a build script that iterates over a themes.json file, the JSON include looks like this: { "vintage" : { "_name" : "vintage", ...
1
vote
1answer
159 views

In a Visual Studio pre-build event how do I execute an exe in the context of its own folder instead of the bin folder?

I have a pre-build event defined like this: $(ProjectDir)PreBuild\runthis.exe When the runthis.exe executes, it runs in the context of the bin folder of my project instead of the PreBuild folder ...
0
votes
0answers
26 views

Trouble with intermittent failure of a custom VS build task

I have a custom build task which uses the AssemblyInfoTask MSBuild extension to automatically set the assembly and file versions of projects in the solution when they're built. Initially, this project ...
1
vote
1answer
39 views

sed command in build script

I'm new to sed command. I was reading the build script for some source code and I found this for loop in it. for x in '*.la' do sed -i -e 's|^\(libdir=.\).*\(/opt/toolchains\)|\1\2|' x ...
1
vote
1answer
88 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
64 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
265 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
112 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
138 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
209 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
95 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
23 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
76 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
72 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
702 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
215 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
167 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
306 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
165 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
345 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
51 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
632 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
97 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
55 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
148 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
154 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
103 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
239 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
54 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
319 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
99 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
298 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
56 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
217 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
588 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
167 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 ...

1 2 3 4 5 33