diff --git a/compile_windows.ps1 b/compile_windows.ps1 index accb8e70c..9ed79f334 100644 --- a/compile_windows.ps1 +++ b/compile_windows.ps1 @@ -1,7 +1,6 @@ mkdir build cd build cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=C:\KDE .. -# cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=DebugFull -DCMAKE_INSTALL_PREFIX=C:\KDE .. mingw32-make -j 4 install diff --git a/compile_windows_debug.ps1 b/compile_windows_debug.ps1 new file mode 100644 index 000000000..41400af43 --- /dev/null +++ b/compile_windows_debug.ps1 @@ -0,0 +1,6 @@ +mkdir build +cd build + +cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=DebugFull -DCMAKE_INSTALL_PREFIX=C:\KDE .. + +mingw32-make -j 4 install