X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=win_build.bat;fp=win_build.bat;h=0d0ebdf289f1904a8df641162254ac7b4adf6c41;hp=0000000000000000000000000000000000000000;hb=8a46d2fb3b2f409b80642cd6fe30645017c980bc;hpb=33c58d75d27a8f72492cb71adbc43bf75281718c diff --git a/win_build.bat b/win_build.bat new file mode 100644 index 00000000..0d0ebdf2 --- /dev/null +++ b/win_build.bat @@ -0,0 +1,15 @@ +@echo off + +rem This is needed to run cmake properly on my system. +rem There are some programs in my $PATH, that inhibit cmake from working correctly. +rem -- kaffeedoktor + +if exist win_prepare.bat CALL win_prepare.bat + +rem Build the whole project +cd build +cmake .. -G "MinGW Makefiles" +mingw32-make +cd .. + +if exist win_restore.bat CALL win_restore.bat