The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
22 views

How do I configure the SVN HTTP proxy from the command line?

I script the set up of my build environment. (So the build process can bootstrap itself if it finds itself running on a clean image). As part of this process, certain dependencies are retrieved from ...
0
votes
1answer
40 views

Sublime does not build C++ and shows no output

I have configured a build system for C and C++ code with the following configuration file stored as C++.sublime-build. { "cmd": ["gcc.exe", "-static", "-o", "$file_base_name", "$file"], ...
0
votes
1answer
106 views

Sublime Text 2 - set build system for specific project

I would like to set a specific build system for a project. In that case I don't have to switch the build system every time I switch a project. I tried to define the build system inside the project ...
2
votes
0answers
30 views

Sublime 2 append current date to filename

I'm trying to use YUICompressor to add the current date to the compressed file. Here's my code { "cmd": ["java", "-jar", "${packages}/User/YUI Compressor/build/yuicompressor-2.4.6.jar", ...
0
votes
1answer
92 views

How to trick QtCreator about the existence of a macro definition

QtCreator has some problems with the code model when using some of the fancy C++11 features in a C++/Qt project. In my case: templated alias, as the following: template<class T> using Ptr = ...
1
vote
1answer
53 views

Does Eclipse use ant build system by default?

I see a .classpath file in eclipse project, it seems not a ant build description file. so by default, does eclipse use ant to build it's project?
0
votes
1answer
162 views

Sublime Text 2 Issue with Boost

I have a build system configured to build the project with boost (v1.53, Mac OS X Mountain Lion) { "cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}", "-I/usr/local/include ...
0
votes
0answers
34 views

add custom program to android image being generated

How can I add a custom system-debug-tool to an android image? It is not listed within build/out/target/product/<snip>/installed-files.txt and but I can still see the intermediate object files ...
0
votes
1answer
220 views

Sublime Text 2 - build can't find something on my path?

I have the following coffeescript build file: { "cmd": ["coffee", "-c", "$file"] , "selector": "source.coffee" } which when I try to run it gives me: [Error 2] The system cannot find the ...
1
vote
1answer
18 views

How can I see the full command actually run by a build system in SublimeText2?

I'm writing my own build system in SublimeText2 but it's not working properly. It would be useful to see the full command that is actually being run to be able to see what's wrong. Is it possible to ...
0
votes
1answer
76 views

Why does tup need one Tupfile per directory?

I've read a lot about the tup build system. In many places, it is said that tup "does not support recursive rules" and that you need to have one Tupfile per directory. Yet I have not seen an official ...
1
vote
3answers
168 views

Changing the layout when creating a TGZ archive

I use CMake to manage a project with the following layout: ProjectA/ include doc test ProjectB include doc test I would like to use CPack to package up a tar.gz source archive with the ...
1
vote
0answers
29 views

Is there any syntax highlight for tup?

I am searching for a syntax highlight for tup. Where can I find one? I would like to use it with QtCreator.
1
vote
3answers
210 views

how to modify the install-path without running the configure script/cmake again

I am working on a project which takes considerable time to build (10-15) minutes. I have recompiled to verify if there is a compilation error. Now I want to change the install directory so that I have ...
0
votes
1answer
84 views

Tricks for porting a large software project to tup build system

What is the best way to port a software project with thousands of .cpp files and associated headers in a fairly well structured source tree to the tup build system? If the tree looks like: colors/ ...
5
votes
3answers
350 views

I find two gradle android plugin - Is there any relation between the two?

I was trying to find out how to build Android application with Gradle. To my surprise I found two references, one from jvoegele and another from Android Tools Project site. They appear to be different ...
1
vote
2answers
245 views

Using Conditional Parameters in CCNET version 1.8.2 to change svn locations

I am trying to setup a build server for our applications. When doing a force build I want to use parameters to determine what to build. Below I have the setup that will work DEV mainly because the if ...
3
votes
1answer
4k views

Sublime Text 2 build system to compile & run Java in a new Terminal/Command Prompt window?

I would like to make a build system in Sublime Text 2 that will compile a Java file, and then run it in a new Terminal (for OS X or Linux) or Command Prompt (for Windows) window. The reason for this ...
0
votes
1answer
1k views

Sublime text 2 C .so build system

I'm working with python within opengl project and writing my own gl library with C language. I use Sublime Text 2 and need build system for creating .so with pressing crtl-b.
3
votes
2answers
61 views

make install vs. inplace linking

When building multiply dependant C++ CMake projects (in Linux) in topologically sorted order, we have two possibilities: Go through every project, and ... ... "make install" it in some prefix. When ...
3
votes
1answer
55 views

How can build systems to be unittested?

When you're tinkering with e.g. Make, or ant, or any other build tool, you're actually writing code. Why is there no 'MUnit' or 'ANTUnit' to test these pieces of code? It makes sense to do so, for ...
5
votes
1answer
178 views

How to adjust the path that Emacs' compile-goto-error gets from the compilation buffer?

I am using Emacs 23 and have the following problem: I run our project's build system from within Emacs like M-x compile -> cd /foo/bar && ./build The build system now does some magic, "cd"s ...
0
votes
1answer
80 views

Does Phantom build system work under Mono?

I'm looking at cross-platform build systems for .Net projects. Phantom looks interesting, however I'm wondering if it will work OK on Linux with Mono. It is built on top of Boo. It seems like Boo ...
3
votes
3answers
291 views

linux build system tool

Our project got pretty big and our build system does not scale anymore. We are doing cross platform development on linux machines. We have too many platforms to build against and even more build ...
0
votes
2answers
337 views

How to customize cmake output

For example, when compiling .c files, I want cmake to just print CC xxx.c to stdout, like linux kbuild.
8
votes
1answer
2k views

Have CMake recursively scan folders?

How do I set up CMake to recursively scan a given directory and determine the list of source files? My project is a shared library. I have a folder structure similar to this: / src/ # ...
1
vote
1answer
191 views

xcode 4 — is there a way to echo stuff in config files?

I am working on a deeply nested Xcode project that uses config files to control settings. There are projects within projects within projects. Is it possible to echo stuff in the config files? In ...
4
votes
2answers
411 views

Build system for an embedded C/C++ project

I am looking for a high-level build system/tool that can help organise my embedded C project into "modules" and "components". Note that these two terms are highly subjective so my definitions are ...
9
votes
2answers
2k views

Tutorial for converting Autotools to CMake

So there seems to be a lot of writing on the subject of Autotools vs. CMake, but for the life of me I can't seem to find a good tutorial on how to convert a project from Autotools to CMake. Does ...
1
vote
2answers
252 views

CMake : encoding problem

Introduction: I am trying to use CMake to obtain cross platform compilation scripts (for VS 9.0 on a Windows32 and Makefiles for Unix). I am experiencing something i can't understand about ...
1
vote
1answer
483 views

CMAKE: Creating and building a list within a function — with directory, or global scope

I am not entirely familiar with the scoping rules of cmake. I need to buildup a list of various files whilst doing RPC code-generation for an IDL. function(generate_rpc file_name) set(PROTO_FILES ...
2
votes
2answers
654 views

How can I migrate from CruiseControl.Net To Atlassian Bamboo?

I am thinking of making a move from our homegrown CI/CD system to Bamboo + jira. We are a .Net shop and so the tools need to support the execution of msbuild/msdeploy executables as well the running ...
1
vote
1answer
386 views

.sln-compatible Mono-based CLI build system?

I've recently begun doing ASP.NET MVC work with others using Visual Studio. While MonoDevelop can open their project workspace files (.sln from MSVS2010) and build the projects just fine, I'm curious ...
1
vote
1answer
2k views

how to include the commands of envsetup.sh in Android?

Hi I have run the command ./build/envsetup.sh on my source code of android while compiling. I want to use the following commands present in the same file. -cgrep -mmm -mm but I get the following ...
2
votes
3answers
796 views

JavaScript build systems

I have little experience with build systems for dynamic languages in general (let alone ones that run in a browser), but I imagine they can improve code quality by enforcing the use of code quality ...
1
vote
2answers
252 views

Integrating compressed source (tar.gz) of 3rdparty library to cmake build system

The source of 3rdparty library already contains CMakeLists.txt. I want to use add_subdirectory command on it. But first of all I have to untar this lib. As I know add_subdirectory runs in cmake time, ...
4
votes
7answers
265 views

Understanding C++ Compliation

I have recently become aware that I have no idea, genericly speaking, how a c/c++ compiler works. I will admit this initialy came from trying to understand header guards but came to the realization ...
48
votes
5answers
15k views

Autotools vs. Cmake vs. Scons

What are the differences between Autotools, Cmake and Scons? What are the pros and cons of each of them? What do you prefer to use?
0
votes
1answer
36 views

Using a build system for reproducible research?

I am doing a research project that involves a pipeline of programs, each generating an output file that becomes the input for the next program. I would like to make it easy to repeat the series of ...
11
votes
9answers
697 views

Macro definitions for headers, where to put them?

When defining macros that headers rely on, such as _FILE_OFFSET_BITS, FUSE_USE_VERSION, _GNU_SOURCE among others, where is the best place to put them? Some possibilities I've considered include At ...
0
votes
1answer
425 views

Build System with Recursive Dependency Aggregation

I recently began setting up my own library and projects using a cross platform build system (generates make files, visual studio solutions/projects etc on demand) and I have run into a problem that ...
1
vote
1answer
297 views

How to handle build rule with unknown targets in OMake when target list generator is built

I have a project which uses OMake for its build system, and I am trying to handle a rather tough corner case. I have some definition files and a tool which can take these definition files and create ...
0
votes
7answers
396 views

Should developers be limited to certain software for development?

Should developers be limited to certain applications for development use? For most, the answer would be as long as the development team agrees it shouldn't matter. For a company that is audited for ...
5
votes
7answers
965 views

What's a stupidly simple way to compile an OCaml project?

I'm toying around with OCaml. The first thing I want to know how to do is build an OCaml project. Right now, I just want something stupidly simple since I'm just learning. Could anyone point me ...
6
votes
2answers
1k views

Finding Directed Acyclic Graph (DAG) Minimal Elements (Vertices) with XSLT/XPath?

I have an XML file that encodes a directed acyclic graph (DAG) that represents a partial order. Such graphs are useful for things like specifying dependencies and finding critical paths. For the ...
4
votes
3answers
1k views

Best build system for embedded development/cross-compiling

I'm doing some development right now using dsPICs and I'm not exactly in love with MPLAB. I'm actually using Visual Studio with a makefile project. Currently I'm using SCons, which seems to work ...
6
votes
2answers
742 views

Build System and portability

I'm wondering how i can make a portable build system (step-by-step), i currently use cmake because it was easy to set up in the first place, with only one arch target, but now that i have to package ...
1
vote
2answers
569 views

Multi-Target Visual Studio Project: one source code

Any suggestions on how one could go about setting up a build system that would compile one or two libraries against a couple of different platforms/targets. The main project is in Visual Studio. For ...
2
votes
4answers
350 views

Build C project automaticly

I'm working on a free software (bsd license) project with others. We're searching for a system that check out our source code (svn) and build it also as test it (unit tests with Check / other tools). ...