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

0001 $BUILDDIR = "build_msvc"
0002 
0003 mkdir $BUILDDIR
0004 cd $BUILDDIR
0005 
0006 cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release ..
0007 #cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Debug ..
0008 #cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=OFF ..
0009 
0010 jom.exe install
0011 
0012 cd ..