diff options
author | don bright <hugh.m.bright@gmail.com> | 2011-12-09 15:47:13 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2011-12-09 15:47:13 (GMT) |
commit | 51f24b998ba555d15f924ccd4fb5b46219f6537b (patch) | |
tree | f23338c2ab55733f24e05849cc90b2e37f58aa3b /src/CGALRenderer.cc | |
parent | faae7882e26c048b0ae2bf7a54065d31d0edbc31 (diff) |
MSVC compile fix
Diffstat (limited to 'src/CGALRenderer.cc')
-rw-r--r-- | src/CGALRenderer.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/CGALRenderer.cc b/src/CGALRenderer.cc index 95bcba1..bac25a6 100644 --- a/src/CGALRenderer.cc +++ b/src/CGALRenderer.cc @@ -24,6 +24,11 @@ * */ +#ifdef _MSC_VER +// Boost conflicts with MPFR under MSVC (google it) +#include <mpfr.h> +#endif + // dxfdata.h must come first for Eigen SIMD alignment issues #include "dxfdata.h" #include "polyset.h" |