Compilation of certain parts of source code will be included/excluded. This can be often reached by pre processing the source code in some way. Including/Excluding parts of the source may be controlled by pre processor keywords.

learn more… | top users | synonyms

2
votes
1answer
50 views

Visual Studio Project: How to include a project reference based on some DefineConstants value?

For user authorization, I only want to include specific module for each user, that is why I create Conditional Compilation like this: ...
0
votes
0answers
9 views

Conditional Compilation for Different Configurations [duplicate]

I have a project for which I added a configuration "AppStore" in addition to the default "Debug" and "Release". I want to include a small piece of conditional code based on compiling for the ...
3
votes
1answer
191 views

C++11: conditional compilation: members

I'm trying to make a struct with conditional members, that means, different members exists only with specific specializations. But, I want that this classes are fastest as possible. I've tried it in ...
6
votes
1answer
118 views

Can I define conditionals in a unit and use them in other units?

I am working on a large unit, the unit got so large that I decided to split it into 3 units. Let's say these unit names are Main, Common, and Objects. The Main unit uses both the other two units, and ...
0
votes
1answer
74 views

Javascript conditional compilation in GWT JSNI

I have this conditional compilation statement which evaluates whether the browser is IE or not: ie = /*@cc_on!@*/false; if (ie) { //do IE specific stuff.. } I need to use it in GWT within JSNI. ...
0
votes
2answers
48 views

Way to determine whether executing in IDE or not? [duplicate]

In C#/VB in Visual Studio 2010, is there way in the code to determine whether the program is currently running in the IDE or not? eg. If ProgramRunningInIDE Then MessageBox.Show exc.Message
1
vote
1answer
184 views

When does #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) in dxvahd.h Microsoft header file become true

Hi I am having 2 VC++ solutions "A" & "B" (VS2008) both are having the same codebase (with just few lines of code different). Using DXVAHD.h in both. dxvahd.h is a standard Microsoft header file. ...
0
votes
0answers
77 views

Conditional Compile - Windows Form OR Linux Console

I'm trying to create a program where if it is on a windows platform it will launch a form to use and if its linux it will use a console. I have a "IUserInterface" where a WindowsUserInterface and a ...
0
votes
2answers
87 views

Conditionally compile to Win32 GUI or Linux Console app

I've been tasked with writing an application that conditionally compiles to a Win32 GUI application under Windows, or a console application under Linux. My biggest stumbling block so far is just ...
0
votes
1answer
65 views

Check for librt linking

Is there a macro that I can #ifdef for to check if librt has been linked to, ie by -lrt with gcc?
0
votes
0answers
28 views

XCode conditional compilation and GIT

I want to use conditional compilation with XCode ios project with next requirements: When this is PROD release, app should use prod url vs dev url for DEBUG This is easy achievable by using #DEBUG ...
0
votes
2answers
95 views

mxmlc (flex compiler) ignores “define” from xml configs

From Adobe's documentation: To set the value of these constants in the flex-config.xml file, rather than on the command line, you write this as the following example shows: <compiler> ...
3
votes
1answer
108 views

How to check whether a variable is declared in D?

How do I check whether a variable exists, i.e. is already declared in D? The background is that I want to use version conditions but still have a default value: version(A) { immutable int var = 1; ...
0
votes
2answers
71 views

Is there a mechanism for C++ like macros in haxe?

in C++ I have macros like: #ifdef DEBUG #define dbgAssert(condition, message)/ if(!(condition)){ implementation.Assert(message); } #else #define dbgAssert(condition, message) #endif ...
-1
votes
1answer
36 views

Are there cases when code is compiled with Visual C++ but Visual C++ runtime is not available?

I need to make changes to some (very) cross-platform code and add calls to _CrtSetDbgFlag() function that is implemented in Visual C++ runtime. Obviously the function is only available when the code ...
-1
votes
1answer
95 views

devlop metro style apps for Intel based processors and ARM based processors [closed]

I want to ask if there are any differences when I develop metro style apps for Intel based processors devices or for ARM based processors ? Are there limitations in code? Or do some APIs not work? Or ...
0
votes
0answers
41 views

Conditional Compilation & Unit Testing Xcode

foFox wrote: I am trying to do perform conditional compilation, where if I am in the testing configuration I want to import #import "FBSession.h" which is my custom FBSession object, created for ...
0
votes
1answer
42 views

Is it possible to ignore specific code to compile using conditional compilation constants by fetching value at runtime in visual studio 2008?

I have a requirement where i use the microsoft powerpoint functionalities to convert ppt to video file using Microsoft core dlls in c#. I have Microsoft office 2010 installed on my machine. So the ...
0
votes
0answers
105 views

yuglify JavaScript compressor removing conditional compilation

I've downloaded Yahoo JavaScript Uglify (yuglify) from https://github.com/yui/yuglify and I intent to use it for JS and CSS compression on some PHP projects hosted on a apache server. Tried to minify ...
1
vote
2answers
115 views

C++ conditional compilation with large numbers of code files

i wanna compile and run one copy of C++ codes on Windoes and Linux. so i need to use conditional compilation(CC). however, it comes across the problem that how to use CC in large numbers of code ...
1
vote
0answers
52 views

Variant anonymous function definitions based on PHP version?

The following fails with a parse error on PHP 5.2.X: if (version_compare(PHP_VERSION, '5.3.0') >= 0) { $greater = function($left, $right) { return $left > $right; } } else { $greater ...
1
vote
1answer
175 views

as3 conditional compiling with flascc

I had as3 project with custom flex-config.xml and conditional compiling directives for mxmlc like this: <define append="true"> <name>CONFIG::DEBUG</name> ...
3
votes
4answers
353 views

Preprocessor directives across different files in C#

I know that I can use preprocessor directives in C# to enable/disable compilation of some part of code. If I define a directive in the same file, it works fine: #define LINQ_ENABLED using System; ...
1
vote
2answers
135 views

How do you use type traits to do conditional compilation?

I'm trying to write code like here but using C++11 features, without Boost. Working from this example, I tried to define a response_trait, and basee conditional compilation on the result of the ...
1
vote
3answers
78 views

Using logical operators with macros

I have a piece of code which I want to include if either of two macros are defined #ifdef MACRO1 || MACRO2 void foo() { } #endif How do I accomplish this in C?
3
votes
1answer
110 views

What version of Delphi were build configurations implemented?

I'm working on a project which includes conditionals to control what to compile for different versions of Delphi. I am only familiar with versions 7, 2010, and XE2. At least in Delphi 2010, there's ...
0
votes
1answer
71 views

‘Feature detecting’ required compile flags in Make (liconv on Mac)

Ubuntu has libiconv built-in to it’s standard c library and does not require it in LDFLAGS. OS X does not have it built-in and requires the flag to be set. My current approach is using ifeq in my ...
1
vote
4answers
650 views

If NETFX_CORE is for Windows 8, what is for Windows Phone 8?

I understand using the NETFX_CORE directive, like this: #if NETFX_CORE // Windows 8 #else // Windows Phone 8 #endif More info: ...
1
vote
0answers
74 views

How to add conditional compilation in resx file in xml format?

NET project in which I need to add contents in the resource file (which is an xml file) based on certain compilation symbols. something like the following: <xml ....> <myNodes> #if ...
1
vote
1answer
46 views

Will the expression provided to Debug.Assert be evaluated in a release build?

Say I have a rather expensive assertion: bool IsCompatible(Object x, Object y) { // do expensive stuff here } If I test this assertion with: Debug.Assert(IsCompatible(x,y)); Will ...
0
votes
1answer
57 views

ObjC Conditional compilation in Cocos2D

I'm trying to have a method behave differently between iOS and MacOS. I need this to process keyboard events on the MacOS platform. Browsing the source code, I found the following macros in use. When ...
1
vote
3answers
155 views

Visual C++ conditional debugging

I am trying to setup a project with conditional debugging. What i want is to have a macro debug which is #defined to some kind of printf/cout/anything when I'm running in debug mode and #defined to ...
2
votes
2answers
408 views

Creating demo and full version app based on one code base/project

I have developed one Android app in one project with Eclipse - it's structured (coming from iPhone) so one constant defines whether it's the demo or the full version. Now I have the problem that ...
2
votes
2answers
249 views

Writing code that works when “has_trivial_destructor” is defined, instead of “is_trivially_destructible”

During the refinement process of the C++11 standard, it seems that is_trivially_destructible was considered a better/more-consistent name than has_trivial_destructor. This is a relatively recent ...
0
votes
2answers
332 views

Multiple inclusion of header file error in C

So I have a header file let's say "header.h" which is protected as follows: #ifndef __HEADER1_H #define __HEADER1_H //type and function def typedef struct { float r; //process noise float k; ...
3
votes
1answer
61 views

Is there an equivalent of VB's VBC_VER for c# compilation?

For a while now, the VBC_VER constant was defined such that you could do things like: #If VBC_VER >= 9.0 Then Imports System.Net.Mail #Else Imports System.Web.Mail #End If Is there an equivalent ...
1
vote
2answers
147 views

How to perform conditional function calling in C?

So I am doing some work in C where I have implementation of the same function in both assembly and C and I want to compare the performance of C vs assembly implementation. Now for that I would want to ...
1
vote
1answer
357 views

Conditional Compilation of schema objects in SSDT Project

Our SSDT database project includes a table that has a computed column that can take one of several forms, depending on customer requirements. I'm trying to figure out how to manage this computed ...
0
votes
0answers
95 views

Adding custom view with conditional base class to a NIB in Interface Builder

We are building an SDK that is centered around a custom view that is available for both iOS and OSX. We want our users to be able to use this view in the exact same way on iOS and OSX. On OSX, this ...
0
votes
0answers
122 views

Visual Studio Deployment Project: Conditional Files Depending on Build Configuration

I wonder if it is possible to build different installers which include different files for one deployment projects purely depending on the build configuration (Debug/Release)? I want to do this ...
2
votes
1answer
505 views

Conditional Compilation using UglifyJS + GruntJS

I'm using grunt-bbb for a JavaScript project I'm working on. I'd love to use conditional compilation using grunt's support for UglifyJS, but I cannot seem to get it to work. I'm trying to pass a ...
1
vote
1answer
263 views

Can flags defined in Makefile using '-D' be used within header files?

I noticed that a flag I defined as -D__SOME_FLAG=1 on the compile line(g++), when used in a header file, did not seem to have the desired affect. ie: code that was enclosed within a #ifdef __SOME_FLAG ...
2
votes
2answers
766 views

Is it possible to use conditional compilation symbols in VS build events?

Say for instance I have a Visual Studio project with a configuration called "MyConfig" and I have the compilation symbol MY_CONFIG_SYMBOL defined. Is there a macro or command to see if ...
5
votes
2answers
271 views

Predefined symbol to select between Lazarus and Delphi

I am looking for a predefined symbol to write a code like that: {$IFDEF LAZARUS} // code compiles by fpc/lazarus {$ELSE} // code compiles by delphi {$ENDIF}
0
votes
2answers
202 views

parse nested conditional statements

Forgive me if this has already been asked, I looked and I couldn't find a similar question anywhere. I need to parse a file that contains conditional statements, sometimes nested inside one another. ...
7
votes
2answers
254 views

#define directive purpose

What is the purpose and good usage of #define directive in C#? There are already few questions on this topic but no answer I need. They only give examples how it works. But I need deeper explanation: ...
0
votes
0answers
71 views

How can Conditional assembly work on Xcode?

I want to reuse some assembly code on Xcode, like nasm conditional assembly does: .macro My_function 1 .globl function_$0_neon function_$0_neon: #ifdef SAD vadd.u8 q0,q1 #else vsub.u8 q0,q1 ...
2
votes
5answers
205 views

C++: Use #if std::is_fundamental<T>::value for conditional compilation in MSVC 2010

In my template I need to have different code parts based on whether the typename is a fundamental type or not. Compiling this code gives a C4067 in MSVC (unexpected tokens following preprocessor ...
1
vote
1answer
183 views

How to generate custom StyleCop rule for C# - Conditional Compilation Preprocessor Directives

Is it possible to write custom C# StyleCop rules that can evaluate conditional compilation preprocessor directives like #if, #elif, #else, #endif? We're developing in an environment which requires us ...
0
votes
2answers
102 views

How to add a define to an ASP.net solution?

i can add a define to a WinForms project through the Project Properties: How do i add a define to an ASP.net solution? Update: Here's what Visual Studio 2010 looks like when working in an ...

1 2 3 4