4
votes
2answers
85 views
Why am I unable to #ifdef stdafx.h?
Hello,
I am trying to include 2 platform-specific stdafx.h files in my .cpp file, but the compiler is unhappy when I try to #ifdef it.
#ifdef _WIN32
#include "stdafx.h"
#elif _ …
3
votes
3answers
123 views
What C preprocessor conditional should I use for OS X specific code?
What C preprocessor conditional should I use for OS X specific code? I need to include a specific library if I am compiling for OS X or a different header if I am compiling for Lin …
3
votes
8answers
230 views
What is the best way to only include certain libraries on certain operating systems in c/c++?
When writing an app that one wants to have compile on mac, linux and windows, what is the best way of managing the different libraries that will need to be included on the various …
2
votes
9answers
311 views
C - alternative to #ifdef
I'm trying to streamline large chunk of legacy C code in which, even today, before doing the build guy who maintains it takes a source file(s) and manually modifies the following s …
2
votes
2answers
190 views
Delphi 2007 and {$IFDEF…} directive, fails to see our conditional
We have the following in our codebase, in a component file:
{$IFDEF ADO}
FDatabase : TADODatabase;
{$ELSE}
FDatabase : TODBCDatabase;
{$ENDIF}
The reason is that for various leg …
1
vote
2answers
131 views
booleans inside #ifdef statements?
In C++, is this:
#ifdef COND_A && COND_B
the same as:
#if defined(COND_A) && defined(COND_B)
?
I was thinking it wasn't, but I haven't been able to find a di …
0
votes
3answers
106 views
Delphi - Scope of custom definitions
Good Morning,
I have a unit which I want to use in two different programs, to tell the difference I wanted to Define a symbol and then check that in the unit.
In my DPR for the p …
