Compilers.inc
上传用户:lmk588
上传日期:2013-04-16
资源大小:5120k
文件大小:8k
源码类别:

按钮控件

开发平台:

Delphi

  1. //----------------------------------------------------------------------------------------------------------------------
  2. // Include file to determine which compiler is currently being used to build the project/component.
  3. // This file uses ideas from Brad Stowers DFS.inc file (www.delphifreestuff.com).
  4. //
  5. // Portions created by Mike Lischke are Copyright
  6. // (C) 1999-2002 Dipl. Ing. Mike Lischke. All Rights Reserved.
  7. //----------------------------------------------------------------------------------------------------------------------
  8. // The following symbols are defined:
  9. //
  10. // COMPILER_1    : Kylix/Delphi/BCB 1.x is the compiler.
  11. // COMPILER_1_UP : Kylix/Delphi/BCB 1.x or higher is the compiler.
  12. // COMPILER_2    : Kylix/Delphi 2.x or BCB 1.x is the compiler.
  13. // COMPILER_2_UP : Kylix/Delphi 2.x or higher, or BCB 1.x or higher is the compiler.
  14. // COMPILER_3    : Kylix/Delphi/BCB 3.x is the compiler.
  15. // COMPILER_3_UP : Kylix/Delphi/BCB 3.x or higher is the compiler.
  16. // COMPILER_4    : Kylix/Delphi/BCB 4.x is the compiler.
  17. // COMPILER_4_UP : Kylix/Delphi/BCB 4.x or higher is the compiler.
  18. // COMPILER_5    : Kylix/Delphi/BCB 5.x is the compiler.
  19. // COMPILER_5_UP : Kylix/Delphi/BCB 5.x or higher is the compiler.
  20. // COMPILER_6    : Kylix/Delphi/BCB 6.x is the compiler.
  21. // COMPILER_6_UP : Kylix/Delphi/BCB 6.x or higher is the compiler.
  22. // COMPILER_7    : Kylix/Delphi/BCB 7.x is the compiler.
  23. // COMPILER_7_UP : Kylix/Delphi/BCB 7.x or higher is the compiler.
  24. //
  25. // Only defined if Windows is the target:
  26. // CPPB        : Any version of BCB is being used.
  27. // CPPB_1      : BCB v1.x is being used.
  28. // CPPB_3      : BCB v3.x is being used.
  29. // CPPB_3_UP   : BCB v3.x or higher is being used.
  30. // CPPB_4      : BCB v4.x is being used.
  31. // CPPB_4_UP   : BCB v4.x or higher is being used.
  32. // CPPB_5      : BCB v5.x is being used.
  33. // CPPB_5_UP   : BCB v5.x or higher is being used.
  34. // CPPB_6      : BCB v6.x is being used.
  35. // CPPB_6_UP   : BCB v6.x or higher is being used.
  36. //
  37. // Only defined if Windows is the target:
  38. // DELPHI      : Any version of Delphi is being used.
  39. // DELPHI_1    : Delphi v1.x is being used.
  40. // DELPHI_2    : Delphi v2.x is being used.
  41. // DELPHI_2_UP : Delphi v2.x or higher is being used.
  42. // DELPHI_3    : Delphi v3.x is being used.
  43. // DELPHI_3_UP : Delphi v3.x or higher is being used.
  44. // DELPHI_4    : Delphi v4.x is being used.
  45. // DELPHI_4_UP : Delphi v4.x or higher is being used.
  46. // DELPHI_5    : Delphi v5.x is being used.
  47. // DELPHI_5_UP : Delphi v5.x or higher is being used.
  48. // DELPHI_6    : Delphi v6.x is being used.
  49. // DELPHI_6_UP : Delphi v6.x or higher is being used.
  50. // DELPHI_7    : Delphi v7.x is being used.
  51. // DELPHI_7_UP : Delphi v7.x or higher is being used.
  52. //
  53. // Only defined if Linux is the target:
  54. // KYLIX       : Any version of Kylix is being used.
  55. // KYLIX_1     : Kylix 1.x is being used.
  56. // KYLIX_1_UP  : Kylix 1.x or higher is being used.
  57. // KYLIX_2     : Kylix 2.x is being used.
  58. // KYLIX_2_UP  : Kylix 2.x or higher is being used.
  59. // KYLIX_3     : Kylix 3.x is being used.
  60. // KYLIX_3_UP  : Kylix 3.x or higher is being used.
  61. //
  62. // Only defined if Linux is the target:
  63. // QT_CLX      : Trolltech's QT library is being used.
  64. //----------------------------------------------------------------------------------------------------------------------
  65. {$ifdef Win32}
  66.   {$ifdef VER150}
  67.     {$define COMPILER_7}
  68.     {$define DELPHI}
  69.     {$define DELPHI_7}
  70.   {$endif}
  71.   {$ifdef VER140}
  72.     {$define COMPILER_6}
  73.     {$ifdef BCB}
  74.       {$define CPPB}
  75.       {$define CPPB_6}
  76.     {$else}
  77.       {$define DELPHI}
  78.       {$define DELPHI_6}
  79.     {$endif}
  80.   {$endif}
  81.   {$ifdef VER130}
  82.     {$define COMPILER_5}
  83.     {$ifdef BCB}
  84.       {$define CPPB}
  85.       {$define CPPB_5}
  86.     {$else}
  87.       {$define DELPHI}
  88.       {$define DELPHI_5}
  89.     {$endif}
  90.   {$endif}
  91.   {$ifdef VER125}
  92.     {$define COMPILER_4}
  93.     {$define CPPB}
  94.     {$define CPPB_4}
  95.   {$endif}
  96.   {$ifdef VER120}
  97.     {$define COMPILER_4}
  98.     {$define DELPHI}
  99.     {$define DELPHI_4}
  100.   {$endif}
  101.   {$ifdef VER110}
  102.     {$define COMPILER_3}
  103.     {$define CPPB}
  104.     {$define CPPB_3}
  105.   {$endif}
  106.   {$ifdef VER100}
  107.     {$define COMPILER_3}
  108.     {$define DELPHI}
  109.     {$define DELPHI_3}
  110.   {$endif}
  111.   {$ifdef VER93}
  112.     {$define COMPILER_2} // BCB v1 compiler is really v2
  113.     {$define CPPB}
  114.     {$define CPPB_1}
  115.   {$endif}
  116.   {$ifdef VER90}
  117.     {$define COMPILER_2}
  118.     {$define DELPHI}
  119.     {$define DELPHI_2}
  120.   {$endif}
  121.   {$ifdef VER80}
  122.     {$define COMPILER_1}
  123.     {$define DELPHI}
  124.     {$define DELPHI_1}
  125.   {$endif}
  126. {$else (not Windows)}
  127.   // Linux is the target
  128.   {$define QT_CLX}
  129.   {$ifdef VER150}
  130.     {$define COMPILER_7}
  131.     {$ifdef BCB}
  132.       please tell milan_va@seznam.cz it works, then delete this line
  133.       {$define KYLIXC}
  134.       {$define KYLIXC_2}
  135.     {$else}
  136.       {$define KYLIX}
  137.       {$define KYLIX_2}
  138.     {$endif}
  139.   {$endif}
  140.   {$ifdef VER140}
  141.     {$define COMPILER_6}
  142.     {$ifdef BCB}
  143.       please tell milan_va@seznam.cz it works, then delete this line
  144.       {$define KYLIXC}
  145.       {$define KYLIXC_1}
  146.     {$else}
  147.       {$define KYLIX}
  148.       {$define KYLIX_1}
  149.     {$endif}
  150.   {$endif}
  151. {$endif (Win32)}
  152. {$ifdef COMPILER_1}
  153.   {$define COMPILER_1_UP}
  154. {$endif}
  155. {$ifdef COMPILER_2}
  156.   {$define COMPILER_1_UP}
  157.   {$define COMPILER_2_UP}
  158. {$endif}
  159. {$ifdef COMPILER_3}
  160.   {$define COMPILER_1_UP}
  161.   {$define COMPILER_2_UP}
  162.   {$define COMPILER_3_UP}
  163. {$endif}
  164. {$ifdef COMPILER_4}
  165.   {$define COMPILER_1_UP}
  166.   {$define COMPILER_2_UP}
  167.   {$define COMPILER_3_UP}
  168.   {$define COMPILER_4_UP}
  169. {$endif}
  170. {$ifdef COMPILER_5}
  171.   {$define COMPILER_1_UP}
  172.   {$define COMPILER_2_UP}
  173.   {$define COMPILER_3_UP}
  174.   {$define COMPILER_4_UP}
  175.   {$define COMPILER_5_UP}
  176. {$endif}
  177. {$ifdef COMPILER_6}
  178.   {$define COMPILER_1_UP}
  179.   {$define COMPILER_2_UP}
  180.   {$define COMPILER_3_UP}
  181.   {$define COMPILER_4_UP}
  182.   {$define COMPILER_5_UP}
  183.   {$define COMPILER_6_UP}
  184. {$endif}
  185. {$ifdef COMPILER_7}
  186.   {$define COMPILER_1_UP}
  187.   {$define COMPILER_2_UP}
  188.   {$define COMPILER_3_UP}
  189.   {$define COMPILER_4_UP}
  190.   {$define COMPILER_5_UP}
  191.   {$define COMPILER_6_UP}
  192.   {$define COMPILER_7_UP}
  193. {$endif}
  194. {$ifdef DELPHI_2}
  195.   {$define DELPHI_2_UP}
  196. {$endif}
  197. {$ifdef DELPHI_3}
  198.   {$define DELPHI_2_UP}
  199.   {$define DELPHI_3_UP}
  200. {$endif}
  201. {$ifdef DELPHI_4}
  202.   {$define DELPHI_2_UP}
  203.   {$define DELPHI_3_UP}
  204.   {$define DELPHI_4_UP}
  205. {$endif}
  206. {$ifdef DELPHI_5}
  207.   {$define DELPHI_2_UP}
  208.   {$define DELPHI_3_UP}
  209.   {$define DELPHI_4_UP}
  210.   {$define DELPHI_5_UP}
  211. {$endif}
  212. {$ifdef DELPHI_6}
  213.   {$define DELPHI_2_UP}
  214.   {$define DELPHI_3_UP}
  215.   {$define DELPHI_4_UP}
  216.   {$define DELPHI_5_UP}
  217.   {$define DELPHI_6_UP}
  218. {$endif}
  219. {$ifdef DELPHI_7}
  220.   {$define DELPHI_2_UP}
  221.   {$define DELPHI_3_UP}
  222.   {$define DELPHI_4_UP}
  223.   {$define DELPHI_5_UP}
  224.   {$define DELPHI_6_UP}
  225.   {$define DELPHI_7_UP}
  226. {$endif}
  227. {$ifdef CPPB_3}
  228.   {$define CPPB_3_UP}
  229. {$endif}
  230. {$ifdef CPPB_4}
  231.   {$define CPPB_3_UP}
  232.   {$define CPPB_4_UP}
  233. {$endif}
  234. {$ifdef CPPB_5}
  235.   {$define CPPB_3_UP}
  236.   {$define CPPB_4_UP}
  237.   {$define CPPB_5_UP}
  238. {$endif}
  239. {$ifdef CPPB_6}
  240.   {$define CPPB_3_UP}
  241.   {$define CPPB_4_UP}
  242.   {$define CPPB_5_UP}
  243.   {$define CPPB_6_UP}
  244. {$endif}
  245. {$ifdef KYLIX_1}
  246.   {$define KYLIX_1_UP}
  247. {$endif}
  248. {$ifdef KYLIX_2}
  249.   {$define KYLIX_1_UP}
  250.   {$define KYLIX_2_UP}
  251. {$endif}
  252. {$ifdef KYLIXC_1}
  253.   {$define KYLIXC_1_UP}
  254. {$endif}
  255. {$ifdef KYLIXC_2}
  256.   {$define KYLIXC_1_UP}
  257.   {$define KYLIXC_2_UP}
  258. {$endif}
  259. {$ifdef CPPB_3_UP}
  260.   // C++ Builder requires this if you use Delphi components in run-time packages.
  261.   {$ObjExportAll On}
  262. {$endif}
  263. //----------------------------------------------------------------------------------------------------------------------