summaryrefslogtreecommitdiff
path: root/os2/MySQL-Client.icc
blob: e00fe28a3c95cbc33f1372e9432a6c5593800a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// disable code inlining when building static libs
InlineCode = "no"

// include common options
include "MySQL-Opt.icc"
include "MySQL-Source.icc"

option ProjectOptions = MySQLOptions
                        //, link(defaultlibsname, "readline.lib")
{

   option file(genobject, "..\\OBJ\\ZLIB\\")
   {
      target "..\\bin\\mysql.dll"
      {
         // optimized precompiled headers
         option macros('global', 'yes')
         {
            source type('cpp') client_pch
         }
         // target source files
         source zlib
         if debug_build  {
            source type('cpp') dbug
         }
         source type('cpp') my_sys
         source type('cpp') my_sys_cli
         source type('cpp') strings
         source type('cpp') mysqlclientlib
      }
   }

   option file(genobject, "..\\OBJ\\READLINE\\")
   {
      target "..\\bin\\mysql.exe"
      {
         // optimized precompiled headers
         option macros('global', 'yes')
         {
            source type('cpp') client_pch //, 'sql_string.h'
         }
         // target source files
         //source readline
         source type('cpp') "..\\client\\mysql.cc"
      }
   }

      target "..\\bin\\mysqladmin.exe"
      {
         // optimized precompiled headers
         option macros('global', 'yes')
         {
            source type('cpp') client_pch //, 'sql_string.h'
         }
         // target source files
         source type('cpp') "..\\client\\mysqladmin.c"
      }

      target "..\\bin\\mysqldump.exe"
      {
         // optimized precompiled headers
         option macros('global', 'yes')
         {
            source type('cpp') client_pch
         }
         // target source files
         source type('cpp') "..\\client\\mysqldump.c"
      }

      target "..\\bin\\mysqlshow.exe"
      {
         // target source files
         source type('cpp') "..\\client\\mysqlshow.c"
      }

      target "..\\bin\\mysqlimport.exe"
      {
         // target source files
         source type('cpp') "..\\client\\mysqlimport.c"
      }

      target "..\\bin\\mysqltest.exe"
      {
         source type('cpp') "..\\client\\mysqltest.c"
      }

}