build

In Eclipse CDT shared resource folder that is built differently for the project

Hi, I have a set of Eclipse c projects that will all refer to a common shared base of code (a mix of .c and .h files in the same folder) but will be built that code differently on a per project basis. The common code base may be edited from within each project but these edits will be fixes to be carried across all the projects. The com...

BlackBerry - Can we import *.cod file as a library for 3rd Part application?

Hi everyone! Anyone have anyidea ragarding the above topic then please reply. If it possible then how? Write an example code if possible to explain. Thanks ...

Automate Builds in .net

Hi all, I have a solution sln, with 50 projects (vbproj, csproj, and setup project). I need automatize Build of all solution, and projects (set of projects of solution folder), and setup project (vdproj). My vdproj (setup project) has Post Build Event.. First, how can I automatize build for vdproj ?? I only can execute a command for ...

How to enable Line Number Shown in Visual Studio Build Output?

Running Visual Studio 2008 express, notice that the output windows there it doesn't show the number such as: (example) while compiling, (even though running a project with multiple solution inside) 1 > adsfgafkgja;l 1 > asdfafas 1 > asdfaf ... 2 > asdfasf 2 > safas trid a fresh installation, wonder why it isn't displaying the line num...

Aggregating built artifacts in Teamcity to a single zip

Aim: Set up an ant/cmd script that will package the artifacts from several builds into a single zip. I plan to do this by setting up a final build configuration that will have a dependency on those several projects. So all my build configurations build successfully and produce build artifacts on the Build Server @.BuildServer\system\art...

build script - how to do it

Hi everyone. About 2 months ago I overtook building proccess in current company. Even though I don't have much knowledge of it, I was the only with enough time, so I didn't have much choice. Situation is not that good, and I would like to do following: Labeling files in SourceSafe with version (example ProjectName PV 1.2) GetFiles ...

How can I make building an Xcode target depend on a shell script?

I have a shell script that runs as part of a Run Script phase in my targets that conditionally copies some files into the product. If I modify the shell script then rebuild, the script is not run because the target does not know that there is a dependency there. How can I add a dependency so that modifications to the shell script cause ...

How to compile wxWidgets for x64 on Windows?

I have had quite the experience trying to compile wxWidgets on Windows for x64. After a nightmare setting up Visual C++ 2008 express to compile x64 apps, I opened the wx.sln file. (I'm using wxWidgets 2.9.0, by the way.) I picked the Release configuration and set x64 as the platform. When I hit build, I get a slew of errors saying that w...

How to create executable .jar file with netbeans

Hello.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 output from build, run, and manifest: compile: Created dir: /home/nick/NetBeansProjects/SemestralWork/dist Building jar: /home/nick...

Publish files/artifacts for failed/broken build in Hudson?

Hi, I'd like to publish certain files for each build regardless of success/failure. In my case I want to publish a report generated from a JUnit RunListener implementation we've implemented, however I would also find it useful to publish additional log files, and any other specific files I am interested in. I know TeamCity does this ou...

How can I change a config file variable using ant build?

I'm using Jboss 4/5 and have some .war .properties files with default configuration settings I want to update these settings using information from the windows xp environment variables. ${env} in ant ...

Eclipse - Galileo IDE force save of changed files before build?

Hi, When I used previous versions of Eclipse (e.g. Ganymede/Europa) if I had edited a file and then attempted a build Eclipse would prompt me to save first. Since I updated to Galileo (Build id: 20090920-1017 & just checked for updates) when I build I'm not prompted to save first. Perhaps the dialog had a checkbox for "don't tell me a...

Publish to FTP after TFS 2010 build quality change

Hi all, When I change the quality of a build in TFS 2010 (to production quality), I would like to have the build uploaded to my FTP site on a remote server. Are there any tools you know of that can accomplish this? If not, any suggestions on how I can do this myself? Thanks! ...

Is there any way to specify a bootstrap target in an ANT build file?

In my Ant build file, I'm using an encrypted property which I'm reading off a text file. I need to decrypt this in sort of a bootstrap target during my build process. How do I do this? As an example, here are the contents of the files. myFile.txt: ENCRYPTED=encryptedtext build.xml: <project name="myProject" default="all"> <property...

How do I sort the symbols of other sections besides the "COMMON" section?

The gnu linker "ld" supplies the option "-sort-common" which sorts the uninitialized global parameters, known as the COMMON section symbols, by their size. When the linker aligns the symbols to even addresses, this option helps minimizing the holes in the section. For example, if we define: --main.c char a; short b; ch...

.build method doesn't want to do both _id's when object has two :belongs_to...??

Hi, I have an object called Review which :belongs_to two objects: Users and Vendors. In other words, there is always a vendor writing a review for a specific vendor. When I create a review, I tried to use the .build method to presumably add the foreign_key at the time the new record is created for review.vendor_id and review.user_id. ...

How do you manage your build [using Phing] process ?

I'm trying to use Phing to automate : running tests running DB migrations on each Developer machine [using dbdeply] deployment to production when needed I think it does make sense to add a build folder in my project and put all my build configuration files and db deltas in that folder. and commit all that into the SVN repository. so ...

Can i have input for creating a Build Tool?

I'm a student and i want make a build tool as a side project for myself because none of the current build tools seem to attract me. There's ant, but i really dislike looking at XML (i don't know why, but i really don't see the appeal of tags; it puts me off visually and cannot be made neat in my eyes). There's maven, but i really don't w...

Change the minimum OS requirments of my iPhone App?

I made a simple application, then submitted for review. After that the app details claims that the minimum OS requirmentes is 3.1.2 (I work with that SDK). If I change my Target's iPhone OS Deployment Target to a lower iPhone OS, then could it be "fix" my problem? Is there any risk of it? I Use some UI(Image)Views, page-flip animations,...

ANT: How to "add" path elements from one path into a second path ?

I have an ANT build xml file which includes a path declaration with numerous path elements. I would like to declare a second path that "includes" somehow all the elements from the former path into its own. That would then allow me to just the later path rather than requiring me to include both when paths are required. Without copying al...