diff options
-rw-r--r-- | doc/testing.txt | 1 | ||||
-rw-r--r-- | src/renderer.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/testing.txt b/doc/testing.txt index d44d801..04768cb 100644 --- a/doc/testing.txt +++ b/doc/testing.txt @@ -61,7 +61,6 @@ $ DISPLAY=:5 ctest environment variables, just like for the main qmake & openscad.pro. Examples: OPENCSGDIR=~/OpenCSG-1.3.2 EIGEN2DIR=~/eigen2 cmake . - CGALDIR=c:\CGAL-3.7 BOOSTDIR=c:\boost_1_46_0 cmake . Valid variables are as follows (see CMakeLists.txt for more info): diff --git a/src/renderer.h b/src/renderer.h index e978080..8deabe8 100644 --- a/src/renderer.h +++ b/src/renderer.h @@ -3,6 +3,10 @@ #include "system-gl.h" +#ifdef _MSC_VER // NULL +#include <cstdlib> +#endif + class Renderer { public: |