Questions tagged [buildconfiguration]

The process, mechanism and results of configuring the build of a source-code project or hierarchy-of-files into its target artifacts (executable files, object libraries, generated documents etc.)

191 questions
3
votes
1 answer

Build Configurations and the Android NDK

I've spent the last few days struggling with getting a system up and running for building multiple configurations of our Android NDK App. I am able to build the libraries fine; the issues I run into usually stem from keeping those libraries up to…
Goose
  • 1,307
  • 2
  • 14
  • 28
2
votes
1 answer

Visual Studio Build Configurations - Prevent Rebuild

I have a file in one of our projects that defines a variable that affects the behavior of most of the other modules throughout the project. Let's call it custom.h. It looks like this: #pragma once #define BUILD 3 // 1: personal, 2: select, 3:…
g.d.d.c
  • 46,865
  • 9
  • 101
  • 111
2
votes
0 answers

VS2010 Load Tests and Performance Tests included in run all tests

I have a VS2010 solution with different build configurations. I have been including specific unit test projects in specific build configurations so that when you are working on a specific configuration you only run the associated unit test…
Adam Fox
  • 1,316
  • 2
  • 12
  • 24
2
votes
2 answers

VS2010 Can't add web.config transformation

Once upon a time, I had a 'DEV' configuration and a 'Web.DEV.config' transformation file for my project. I then removed that particular configuration... ...Now I want it again. Problem is, when I add the configuration, then try to add the config…
2
votes
4 answers

How to make working CUDA 11.6 with CMake 3.23 and MSVC 2019

I cannot find a solution to manage how to use the langage CUDA in a CMake project on Windows with the standard MSVC 2019 compiler. I am trying to configure and compile this hello-cmake-cuda repository (also described in this blog…
Thibault
  • 73
  • 1
  • 8
2
votes
1 answer

TFS2010: Build Configuration Issues

I have customized the build configurations in my solution by deleting the Debug and Release configurations and creating "Dev" and "Test". Everything builds fine locally but I get the following error (and others like it) when building one of the new…
chief7
  • 14,263
  • 14
  • 47
  • 80
2
votes
1 answer

Custom Xcode Build Configurations with Custom Frameworks and Cocoapods

I have a project with a main iOS target, some custom frameworks whose source files are in the same project, and CocoaPods. I recently changed my Xcode build configuration names and added two more in order to cover two environments (staging,…
2
votes
1 answer

Jenkins how to iterate the same job over different values of a parameter

I have a fairly simple problem, but I can`t find a good solution online or in the documentation so far. I have a jenkins job that has two String Parameters (param1, param2) I want to be able to add more than one value to param2, so that the job…
Patrick
  • 107
  • 11
2
votes
0 answers

How to disable Apple WatchApp targets while running iOS application with a particular build configuration?

Currently I have watch app targets in my project. But a library added to this watchapp targets was build for device only. So I cannot build the watchapp target in simulator. In my project I am using multiple build configuration. So I want to enable…
2
votes
1 answer

Are x64 build configurations supported for Roslyn Analyzers?

I'd like to add an analyzer to a solution that exclusively contains x64 projects, and the analyzer is only meant to be applied to projects of that solution. Can I have a x64 build configuration for my Analyzer? If I try that, the Analyzer compiles…
2
votes
1 answer

Eclipse CDT Build Configs - Testing a DLL with CPP Unit

I'm making a DLL (and probably a Linux port at some later date) in C++ using eclipse. The situation is as follows: I am trying to make two separate build configurations, one that will build a DLL and one that will build an executable CppUnit test.…
Chris Covert
  • 2,684
  • 3
  • 24
  • 31
2
votes
1 answer

TeamCity non-deterministic build triggering with Git

I use a GitFlow branching strategy. I like to have 3 build configurations per project: Integration - builds from develop, feature/* and hotfix/* with branch specification …
Tim Long
  • 13,508
  • 19
  • 79
  • 147
2
votes
0 answers

LabDefaultTemplate-> ExecuteRemoteTestRun2 doesn't take in account the Order field of the test in the MTM

The Scenario: Create 2 codedui tests. First Test will be Test1 and the second Test2. Create 2 test cases in the mtm. Create 2 suites in the MTM. Suite1 and Suite2. Add to Suite1 the tests in the following order, Test1 then Test2. Add to Suite2 the…
barak
  • 61
  • 3
2
votes
1 answer

Can ivy install and retrieve configurations from Maven repository?

I have local filesystem Ivy repository and need to install (publish) all artifacts into remote Maven repository like Nexus or Artifactory. I wrote the ant script for ivy install task along the following lines:
Audrius Meškauskas
  • 20,936
  • 12
  • 75
  • 93
2
votes
1 answer

Setting up xcode configuration/scheme for beta distribution

I'm trying to create a way to be able to distribute a beta version of my app via Testflight without overwriting the production version. I'd like to be able to know in the code whether it's a beta build or a production build (i.e. somehow define #if…
Mason
  • 6,893
  • 15
  • 71
  • 115