aboutsummaryrefslogtreecommitdiff
path: root/cutl/details/config.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-08 18:24:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-08 18:24:02 +0200
commit783efe3b1649f3426613e3c151e47c33a854010c (patch)
tree87142dbba7a9146c799384e5b058f5796b8a00da /cutl/details/config.hxx
parent4a6e9ddf2f8fb848ed362aefac376088487a30ec (diff)
Add initial support for build2 build
Diffstat (limited to 'cutl/details/config.hxx')
-rw-r--r--cutl/details/config.hxx14
1 files changed, 11 insertions, 3 deletions
diff --git a/cutl/details/config.hxx b/cutl/details/config.hxx
index 8a4adc0..2d0ec8d 100644
--- a/cutl/details/config.hxx
+++ b/cutl/details/config.hxx
@@ -5,10 +5,18 @@
#ifndef CUTL_DETAILS_CONFIG_HXX
#define CUTL_DETAILS_CONFIG_HXX
-#ifdef _MSC_VER
-# include <cutl/details/config-vc.h>
+#ifdef LIBCUTL_BUILD2
+# ifdef _MSC_VER
+# include <cutl/details/build2/config-vc.h>
+# else
+# include <cutl/details/build2/config.h>
+# endif
#else
-# include <cutl/details/config.h>
+# ifdef _MSC_VER
+# include <cutl/details/config-vc.h>
+# else
+# include <cutl/details/config.h>
+# endif
#endif
#endif // CUTL_DETAILS_CONFIG_HXX