diff options
Diffstat (limited to 'odb/mssql/details/build2')
-rw-r--r-- | odb/mssql/details/build2/config-stub.h | 6 | ||||
-rw-r--r-- | odb/mssql/details/build2/config-vc-stub.h | 6 | ||||
-rw-r--r-- | odb/mssql/details/build2/config-vc.h | 16 | ||||
-rw-r--r-- | odb/mssql/details/build2/config.h | 18 |
4 files changed, 46 insertions, 0 deletions
diff --git a/odb/mssql/details/build2/config-stub.h b/odb/mssql/details/build2/config-stub.h new file mode 100644 index 0000000..c1421d9 --- /dev/null +++ b/odb/mssql/details/build2/config-stub.h @@ -0,0 +1,6 @@ +/* file : odb/mssql/details/build2/config-stub.h + * copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC + * license : ODB NCUEL; see accompanying LICENSE file + */ + +#include <odb/mssql/details/config.h> diff --git a/odb/mssql/details/build2/config-vc-stub.h b/odb/mssql/details/build2/config-vc-stub.h new file mode 100644 index 0000000..c5e7fd2 --- /dev/null +++ b/odb/mssql/details/build2/config-vc-stub.h @@ -0,0 +1,6 @@ +/* file : odb/mssql/details/build2/config-vc-stub.h + * copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC + * license : ODB NCUEL; see accompanying LICENSE file + */ + +#include <odb/mssql/details/config-vc.h> diff --git a/odb/mssql/details/build2/config-vc.h b/odb/mssql/details/build2/config-vc.h new file mode 100644 index 0000000..6bb48cd --- /dev/null +++ b/odb/mssql/details/build2/config-vc.h @@ -0,0 +1,16 @@ +/* file : odb/mssql/details/build2/config-vc.h + * copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC + * license : ODB NCUEL; see accompanying LICENSE file + */ + +/* Configuration file for Windows/VC++ for the build2 build. */ + +#ifndef ODB_MSSQL_DETAILS_CONFIG_VC_H +#define ODB_MSSQL_DETAILS_CONFIG_VC_H + +/* Define LIBODB_MSSQL_BUILD2 for the installed case. */ +#ifndef LIBODB_MSSQL_BUILD2 +# define LIBODB_MSSQL_BUILD2 +#endif + +#endif /* ODB_MSSQL_DETAILS_CONFIG_VC_H */ diff --git a/odb/mssql/details/build2/config.h b/odb/mssql/details/build2/config.h new file mode 100644 index 0000000..631017e --- /dev/null +++ b/odb/mssql/details/build2/config.h @@ -0,0 +1,18 @@ +/* file : odb/mssql/details/build2/config.h + * copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC + * license : ODB NCUEL; see accompanying LICENSE file + */ + +/* Static configuration file for the build2 build. The installed case + (when LIBODB_MSSQL_BUILD2 is not necessarily defined) is the only + reason we have it. */ + +#ifndef ODB_MSSQL_DETAILS_CONFIG_H +#define ODB_MSSQL_DETAILS_CONFIG_H + +/* Define LIBODB_MSSQL_BUILD2 for the installed case. */ +#ifndef LIBODB_MSSQL_BUILD2 +# define LIBODB_MSSQL_BUILD2 +#endif + +#endif /* ODB_MSSQL_DETAILS_CONFIG_H */ |