2
votes
6answers
128 views
C++ Buildsystem with ability to compile dependencies beforehand
Hi,
I'm in the middle of setting up an build environment for a c++ game project. Our main requirement is the ability to build not just our game code, but also its dependencies (Ogre3D, Cegui, boost, …
0
votes
3answers
76 views
C++ DLL fails when run from different drive letter
I've written a C++ DLL that connects to a Sybase database using the native C library for Sybase. I can build and run the program on my C drive, and others can run it from their C drives, and …
-1
votes
3answers
112 views
Is there an automated program to find C++ linker errors?
I'm working in a Linux environment with C++, using the GCC compiler.
I'm currently working on modifying and upgrading a large pre-existing body of code. As part of this, it has been necessary to add …
2
votes
3answers
42 views
Sharing common Ant targets between projects
Is there a well-established way to share Ant targets between projects? I have a solution currently, but it's a bit inelegant. Here's what I'm doing so far.
I've got a file called ivy-tasks.xml hosted …
0
votes
4answers
43 views
Is it possible to create an “uber” jar containing the project classes and the project dependencies as jars with a custom manifest file ?
I'm trying to create a executable jar(using maven) that contains the project classes and it's dependencies with a manifest file that has the entry for the main class and the class path entry that …
1
vote
1answer
60 views
Problem building executable jar with maven
I am trying to generate an executable jar for a small home project called "logmanager" using maven, just like this:
…
0
votes
1answer
23 views
How to ignore output from executable with CruiseControl.Net build?
I'm running a little find and replace utility called fart.exe (yes, fart, as in Find and Replace Text) as part of my CC build. Works great.
The problem is that FART while it is working displays a …
0
votes
1answer
11 views
Pre-build event to include files in project
I run a pre-build event to copy files to my project's folder (ProjectX). I need to include these files as content files in ProjectX, so that when built, it is seen as part of ProjectX's output or …
1
vote
2answers
38 views
Is there a way to specify assembly references based on build configuration in Visual Studio?
I have a project that adds some extensibility to another application through their API. However, I want to be able to use the same project for multiple versions of their application, because most of …
0
votes
1answer
22 views
Running multiple TeamCity Agents on the same computer?
We have several build machines, each running a single TeamCity build agent. Each machine is very strong, and we'd like to run several build agents on the same machine.
Is this possible, without using …
0
votes
0answers
25 views
ILMerge DLL not merged in correctly
In the build process for a .NET C# tool, I have been using ILMerge to merge the assemblies into a single exe.
I added a new class library recently, and now the ILMerge is failing. I have remembered …
7
votes
7answers
151 views
Build Process - What to use?
I'm considering writing my own delivery code using PowerShell and/or C#, maybe shelling to NAnt or MSBuild.
Why should I not go this way? Is this such a really hard
endeavor compared to using NAnt …
2
votes
2answers
42 views
Multiple Output paths for a C# Project file
Can I use multiple output paths. like when i build my project, the exe should generate in two different paths. If so, How can I specify in Project Properties-> Build -> output path? I tried using , …
2
votes
8answers
149 views
Build management in C++ & good IDEs on Linux
I am starting to write a moderately sized project in C++ requiring a fairly large amount of files and dependencies on other projects.
Do you think manually maintaining a Makefile for this project is …
0
votes
0answers
24 views
Waf generating Visual Studio projects?
Can the Waf build system generate Visual Studio project files for C/C++?
