buildconfiguration Questions
1
Solved
I'm looking at a build folder configured using CMake for building with ninja. Naturally, it has a build.ninja file and I can ninja tgt1 in that folder and build target tgt1. But - what I want to do...
Anthropologist asked 20/12, 2023 at 15:30
1
In CMake, we can write:
add_library(mylib mylib.c)
for a dynamically-linked (shared) library, and
add_library(mylib STATIC mylib.c)
for a static one. But - can we start with the first syntax, the...
Eozoic asked 22/4, 2023 at 8:25
1
I've been using CLion with a certain repository of mine for a while now. Suddenly (or maybe not suddenly, but I can't figure out the cause), I get this error message in the CMake console:
Cannot ge...
Rebbeccarebe asked 15/3, 2022 at 19:20
3
I'm trying to cover as much as possible a Kotlin Android library and I'm encountering an issue about custom BuildConfig variable, better known as buildConfigField.
I would like to mock this variab...
Kellykellyann asked 5/9, 2018 at 8:55
5
Solved
How do I check the iOS deployment target in a Swift conditional compilation statement?
I've tried the following:
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0
// some code here
#else
/...
Sollars asked 23/6, 2014 at 15:6
1
The Intel C/C++ has a bunch of custom flags, some of which mix compilation and linking, (such as -qopenmp), and others are just idiosyncratic alternative forms (such as -ipp for linking with Intel'...
Undervest asked 2/1, 2022 at 15:24
28
Solved
I have a multi project solution in Visual Studio 2008. I just added a new Configuration called Release-VersionIncrement to the solution, specifying "use release" configuration as baseline. All proj...
Hotel asked 8/7, 2009 at 20:0
2
I am using dotnet core 2+, but the question is likely much more generic.
My CI pipeline currently looks like this:
dotnet build -c Release
dotnet test
dotnet public -c Release --no-build
For t...
Jenny asked 30/1, 2019 at 8:50
1
Solved
We have five practically identical apps, with a few different icons/names/settings. They are different "brands" of the same app, only differentiated in a few different icons, separate AppGroups, an...
Maurits asked 26/5, 2018 at 22:19
1
Solved
I'm trying to configure a project with meson. Specifically, I'm trying to set some of the options.
meson config tells me, among other things:
Core options:
Option Current Value Possible Values Des...
Breeches asked 23/8, 2020 at 16:21
2
I have an Xcode 7.3 workspace with three projects, App, FrameworkA, and FrameworkB. Each project has a single target. This is iOS, so the framework targets are Cocoa Touch Frameworks, which m...
Agate asked 7/5, 2016 at 16:28
1
Solved
I'm trying to use CLion (latest version - 2019.3) to work on a source repository of mine, which already uses CMake (i.e. has a CMakeLists.txt). Now, the package has some options regarding which tar...
Sped asked 13/2, 2020 at 22:31
1
Solved
In his Meeting C++ 2019 talk (and also in 2018), presenter Deniz Bahadir recommends that we specify targets' C++ header files using target_sources(), with some of them being PUBLIC or INTERFACE.
B...
Purifoy asked 3/1, 2020 at 23:22
2
Solved
I can change the build configuration from debug to release (or other debug configurations that I created), but when I change back to debug, Visual Studio freezes. Memory usage keeps climbing and cl...
Ahriman asked 24/4, 2017 at 17:13
11
Solved
When creating a new project with unit tests, Xcode sets the build configuration to Debug for the Test scheme (same for the Run scheme).
Should I differentiate between Run (Command-R) & Test (C...
Colicweed asked 19/7, 2011 at 13:40
3
Solved
is there a way in Visual Studio to use a custom Configuration like "#if DEBUG"
I need a "#if OFFLINE" as my Build-Config's name is "Offline" (only for further debug-purposes too)...
Thanks!
Tankersley asked 26/8, 2013 at 9:50
2
Solved
How should I make my CMake project default to configuration for a Release rather than a Debug build?
Caesar asked 16/2, 2018 at 17:45
1
Solved
I need to use two different GoogleService-info.plist for working with dev and prod builds, currently I'm separating dev and prod by just changing "build configuration" in edit scheme, but now I nee...
Orelu asked 7/9, 2016 at 5:47
4
Solved
What's the difference between different Build Configuration settings e.g. Any CPU, Mixed Platform, WIN32 etc in Visual Studio.
Glomerulonephritis asked 18/4, 2011 at 12:24
2
Solved
I'm writing a unified project for 3 smart TVs. I have also 3 configurations created in Visual Studio. Now I want to execute some CLI scripts depending on selected configuration.
The problem is in ...
Marnamarne asked 9/2, 2016 at 8:55
1
Solved
Using Xcode 7.2 (7C68), OS X 10.11.2 (15C50)
tl;dr With multiple projects in same Xcode workspace, why do my user-defined build settings for a build configuration seem to not work? I set them corr...
Untitled asked 22/12, 2015 at 23:52
3
Solved
I have used build.gradle(app) to create different flavors of apk.
But installing different flavors of same apk overrides the previous one.
I want to create different apks to run on same device simu...
Foreconscious asked 14/10, 2015 at 13:5
0
What is the difference among the following build configurations:
Any CPU
Mixed Platform
Note that this is a different question respect to Build Configuration: Mixed Platform VS Any CPU : there,...
Mertens asked 15/9, 2015 at 13:15
1
Solved
I've followed this tutorial to allow for my app to have builds for DEBUG, ADHOC testing (for my beta users), and RELEASE. Everything works great except for my in-app purchases.
My Bundle IDs after...
Extracurricular asked 6/2, 2014 at 15:52
2
Solved
"Visual Studio Express 2013 for Windows" allows me to compile debug, release or master. While the difference between debug and release is known, I've never heard of a master compilation option. Wha...
Mcclinton asked 21/11, 2013 at 13:38
1 Next >
© 2022 - 2024 — McMap. All rights reserved.