Warning, /education/labplot/compile_windows_mingw.ps1 is written in an unsupported language. File is not indexed.

0001 $BUILDDIR = "build_mingw"
0002 
0003 mkdir $BUILDDIR
0004 cd $BUILDDIR
0005 
0006 cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=C:\CraftRoot  ..
0007 #cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=C:\CraftRoot  ..
0008 #cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=OFF -DCMAKE_INSTALL_PREFIX=C:\CraftRoot  ..
0009 
0010 mingw32-make -j 16 install
0011 
0012 cd ..