diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-10-16 01:14:35 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-10-16 01:14:35 (GMT) |
commit | 7332ec9fe260140ff74506fa2ba95e0a2bbf352e (patch) | |
tree | ab72752cc52e68d1ed77559cdd18d702ffc05b2c /doc/testing.txt | |
parent | 7735f5510cdc2d396092d04ed98a2dbaec347608 (diff) |
clean up linux changes to fit with win32 changes.
Diffstat (limited to 'doc/testing.txt')
-rw-r--r-- | doc/testing.txt | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/doc/testing.txt b/doc/testing.txt index e265b96..c5fb243 100644 --- a/doc/testing.txt +++ b/doc/testing.txt @@ -10,10 +10,20 @@ cmake .. make make test -Building on Windows: -Follow http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Building_on_Windows -and build openscad, to verify your setup. Then, from the same command prompt, -run the above commands, but use 'nmake -f Makefile' instead of make +Windows: + +First, get a normal build working by following instructions at +http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Building_on_Windows +Then, from the QT command prompt: + +cd tests +mkdir build +cd build +cmake .. -DCMAKE_BUILD_TYPE=Release +sed -i s/\/MD/\/MT/ CMakeCache.txt +cmake .. +nmake -f Makefile +nmake -f Makefile test Adding a new regression test: ------------------------------ |