Top "Build-process" questions

The process of converting source code files into standalone software artifact(s) that can be run on a computer

In Maven 2, how do I know from which dependency comes a transitive dependency?

I would like to know which dependency described in my pom.xml brings a transitive dependency in my target directory. …

java maven-2 build-process
What is obj folder generated for?

Possible Duplicate: What are the obj and bin folders (created by Visual Studio) used for? The default output path for …

c# .net visual-studio build-process
In Visual Studio, what does the "Clean" command do?

You know, the one that outputs this=> ------ Clean started: Project: Foo.Bar, Configuration: Debug Any CPU ------ ========== Clean: 1 …

visual-studio build-process
How to cope with "intrin.h: No such file or directory"?

#include <intrin.h> The above will report: intrin.h: No such file or directory Which seems to be …

c++ build-process eclipse-cdt
Disable generating PDB files in MsBuild

I'm looking to squeeze some more speed out of my build and was wondering if I could instruct msbuild to …

c# debugging msbuild build-process
How do I upgrade the version of a maven plugin?

I am using the maven-ear-plugin version 2.3.1 - I know there is a new version available: http://maven.apache.org/plugins/…

java maven-2 build-process maven-ear-plugin
Overriding a default option(...) value in CMake from a parent CMakeLists.txt

I am trying to include several third-party libraries in my source tree with minimal changes to their build system for …

c++ build build-process cmake
What are the differences between Bazel and Gradle?

Google just open-sourced its build tool Bazel. What are the differences between this tool and Gradle? What can it do …

gradle build-process build-tools bazel
Xcode - Automatically add all files in a folder to a target

In Xcode, is there a way to specify that all files in a folder are compiled by a target. Eg. …

xcode build build-process build-automation
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 …

build build-process cmake build-automation build-system