Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Delphi 2010, if I want to do this:

{$IFDEF VER999}
//some delphi 2010-specific code here
{$ENDIF}

What version # do I need to use in place of "999"?

share|improve this question
I think you mean IFDEF. – TrueWill Sep 2 '09 at 23:46
err yes... just a typo. thanks – JosephStyons Sep 3 '09 at 0:16
see stackoverflow.com/questions/750801 – ulrichb May 17 '10 at 21:43

5 Answers

up vote 16 down vote accepted

{$IFDEF VER210}

share|improve this answer
4  
This file almost always contains the latest defines: jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/include/… – Jeroen Wiert Pluimers Oct 15 '09 at 12:49

Just for completeness, I have found a full list as of D2007, and added the more recent ones.

In Delphi 2007, VER180 and VER185 are both defined. This was for backward compatibility with Delphi 2006, and to make sure you could also detect D2007 specifically.

I'm not sure why they did that between '06 and '07, but not for other releases. Seems inconsistent to me (but it isn't - see Barry Kelly's comment below). But at any rate, the full list is like this:

{$IFDEF VER80}  - Delphi 1
{$IFDEF VER90}  - Delphi 2
{$IFDEF VER100} - Delphi 3
{$IFDEF VER120} - Delphi 4
{$IFDEF VER130} - Delphi 5
{$IFDEF VER140} - Delphi 6
{$IFDEF VER150} - Delphi 7
{$IFDEF VER160} - Delphi 8
{$IFDEF VER170} - Delphi 2005
{$IFDEF VER180} - Delphi 2006
{$IFDEF VER180} - Delphi 2007
{$IFDEF VER185} - Delphi 2007
{$IFDEF VER200} - Delphi 2009
{$IFDEF VER210} - Delphi 2010
{$IFDEF VER220} - Delphi XE
{$IFDEF VER230} - Delphi XE2
{$IFDEF VER240} - Delphi XE3
share|improve this answer
7  
The thing between 2006 and 2007 is that the compiler in 2007 used the same DCU format, so people's components would still work. – Barry Kelly Oct 15 '09 at 22:36
1  
Would someone add Delphi XE3 to this list ? I'm guessing its VER240 ? – sergeantKK Oct 8 '12 at 15:12
added xe3, source was delphi.wikia.com/wiki/CompilerVersion_Constant – JosephStyons Oct 9 '12 at 18:01

If you're working with Delphi 6 and later, you can use CompilerVersion:

{$IF CompilerVersion >= 18.5}
//some code only compiled for Delphi 2007 and later
{$IFEND}
Delphi XE2  - 23
Delphi XE   - 22
Delphi 2010 - 21
Delphi 2009 - 20
Delphi 2007 - 18.5
Delphi 2006 - 18
Delphi 2005 - 17
Delphi 8    - 16
Delphi 7    - 15
Delphi 6    - 14
share|improve this answer

Here is a wiki page with conditional defines.

share|improve this answer

Along the same lines as Jason's comment if you are creating code that needs to run in current and older versions of Delphi you might want to do something like:

{$IF CompilerVersion > 18.5} 
   //Delphi 2009 or higher
   //Unicode version of code
{$ELSE}
   //Delphi 2007 and earlier
   //NON-Unicode version of code
{$IFEND}
share|improve this answer
4  
If the reason for conditional compilation is Unicode or lack thereof, use {$IFDEF UNICODE}. – Jan Goyvaerts May 24 '11 at 0:40
Agreed. Much clearer. – TheSteven Sep 8 '11 at 21:16

protected by Community May 8 '11 at 17:04

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.