From: Marco Genise Date: Wed, 18 Oct 2006 17:18:20 +0000 (+0000) Subject: Changed the windows build method. X-Git-Tag: 0.1.0~278 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=91ee3f5533474f265553a0870bb1c07a4b686906;ds=sidebyside Changed the windows build method. --- diff --git a/Makefile b/Makefile index 3de1c2c7..694bd065 100644 --- a/Makefile +++ b/Makefile @@ -19,8 +19,8 @@ default: run_cmake: cd build && cmake .. && make -# I need the prepare/restore at my system, because I have to alter the $PATH -# temporarily. Because it's very system dependent, I didn't include the files. -# -- kaffeedoktor build_windows: - win_build.bat + cd build && cmake .. -G "MinGW Makefiles" && mingw32-make + +clean: + rm -rf build/* diff --git a/win_build.bat b/win_build.bat deleted file mode 100644 index 0d0ebdf2..00000000 --- a/win_build.bat +++ /dev/null @@ -1,15 +0,0 @@ -@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