build

Has anybody used waf to build Java Applications?

Has anybody used successfully waf for building java applications? Preferably on Jython? Maybe with ivy integration? ...

Problem creating static/dynamic c++ libraries in visual studio

When I try to build my c++ library (in both static and dynamic mode) using visual studio 2008, in the debug folder, instead of .lib or .dll file, some .obj files are created along with an .idb and an .pdb file. how can I make visual studio build the library file? ...

How to make XCode Run Script Build Phase run if the build breaks?

Hi, I want to be able to launch a Run Script Build Phase in XCode that does this: /usr/bin/say "Broke it." if my build fails. Not sure how to capture the build failure to prompt that though? Two reasons I guess, one "what to catch", two "the build is done so the script has already run in theory... ?" How would you do this? Thanks //...

MEF - Do I need to implement IPartImportsSatisfiedNotification

public interface IPlugin { public bool execute(); } All my "parts" implement this IPlugin interface. My parts obviously have Import/Export requirements/offerings. I'm writing a build+config system, in which the user dynamically selects what he/she wants, which translates to a set of plugins being called. For example, here's a lis...

tool for detecting commented-out code

It is agreed by many that commented out code is a bad thing if you are using source control. (And it is agreed by many more, that if you are not using source control, that is even a worse thing). So the question is, do you know a tool that detected (too much) commented out code? Do you think such a thing would be a useful [[your-buil...

'Could not find project configuration' build error

I'm getting the build error 'error VCBLD0007: Could not find project configuration RELEASE|X64 to build.' when attempting to build in that configuration. Release|Win32 works fine. The configuration definitely does exist in the project. I'm building with vcbuild in VS2005 and running on a x64 box. Anyone have a hint? ...

iPhone release build not functioning the same as debug build

My program works the way I want it to on both the iPhone simulator and the iPhone itself when using the debug build. However when I change it to the release build, its works on the iPhone simulator but not on the device. I'm trying to animate a ball across the screen with a timer and the ball should bounce off the sides if it collides wi...

ASP.NET GUI-friendly Build tools

I am new to .NET programming. We are a team of 4 members developing a web based application. We will begin our development once the Requirement Specification and other formalities are completed. As suggested in this forum we are planning to use Visual SVN for source control. We are not aware of Build tools, we heard that MSBuild and ...

How to use a single checkstyle suppression file in Maven for all modules.

I have a project that consists of several Maven modules which are all children of a parent module. I have the parent set up to use checkstyle and the child modules all inherit this behaviour correctly. I would like all the child modules to use the parents suppression file defined in its plugin. I define a property checkstyle.suppression...

Configuring GitHub to automatically build new ruby gems

I just added a new gem to GitHub. Check it out: http://github.com/esilverberg/google_otg Unfortunately, it cannot be installed via the command: gem install esilverberg-google_otg And this is because it is not showing up in: http://gems.github.com/list.html So it is not being built by GitHub. I followed their really simple instructi...

Lazy C++ - Chicken and Egg Problem

Based on feedback I got from this question, I'm interested in using Lazy C++ on my OSX laptop. The Lazy C++ webpage has binaries for Linux and Windows available, but nothing for OSX. There's also a link to download for the Lazy C++ source, but it requires a lzz binary as part of the build process. This creates a situation where I need an...

reset build settings to default in xcode?

how do i reset my build settings in xcode? ...

how to copy files to Library or Document dir in iphone build phase?

I want copy some files to Library or Document in the "Product directory" but when i add a build phase, and select "Products Directory" in destenation and input my subdir like "Library/xxx/" when I run the app in simulator, i found nothing int the destenation and if I set destenation to "Resources", it will be there. please tell me w...

Application is not loading in simulator using Eclipse

Hi friends, I am able to build a application what I have , however when I check in simulator there is no application icon available using Eclipse, i have checked carefully there are no errors. When I run same application in JDE ,application icon is available. ...

Visual Studio 2005 build problem

Hi, I have a project Y whose build order properties states it depends on project X. I need to map project X's dll within Project Y References folder. The problem arises when the dll for Project X is not mapped within Project Y References folder. Then when I build Project Y it fails with because it can't find the reference to Project X...

Building from the command line to produce a binary for Mac OS 10.5 (and 10.6)

I am referring to the following source: http://clpbar.sourceforge.net Build process is the standard: ./configure followed by make If I build on 10.5 I get a binary whose file contains: Mach-O executable i386 If I build on 10.6 I get a binary whose file contains: Mach-O 64-bit executable x86_64 How can I build from the command line on ...

netbeans - scp after build

Hi I'd like to copy a file to a remote server with scp after building, using Netbeans. What I do now manually is: Clean and Build Main Project scp dist/project.jar login@dest/...../...... Is there some way to automate this task? I tried looking at the build.xml file, but it really looks like something I don't want to mess with. Th...

MSBuild file for deployment process

I could do with some pointers, code examples or references that may help me do the following in an msbuild file to help speed up the deployment process.. This scenario involves getting a developers 'local' version onto a 'development' server.. Increment a developers local Web Applications Assembly version number Publish a developers l...

how do wild character % work in makefile rules

I have a makefile. I need to build a set of targets under C:/bin/ from the source files under src1 and src2. let them be required in the order say ${DEST_DIR}/a.o ${DEST_DIR}/b.o ${DEST_DIR}/c.o ${DEST_DIR}/d.o in some part of makefile DEST_DIR = C:/bin SRC_DIR1 = C:/src1 SRC_DIR2 = C:/src2 and i've the rules for them as follow...

Dojo build -> dojo.require(); still needed?

Hi everyone, this was my first dojo build so please excuse my ignorance in this matter. I've just created my custom build from dojo build system using the following (very simplified) profile: dependencies = { stripConsole: "normal", layers: [ { name: "../dijits/cx/dijitsCXbuild.js", copyrightFile: "CopyrightCX.txt", dependen...