Switch to OpenSuse 11.2

Switch to OpenSuse 11.2

Postby berndnoetscher » Fri Dec 04, 2009 8:42 am

Just to inform, that will switch to OpenSuse 11.2 for the default Linux with the next KBasic version upload.
Changed the configuration of the build files, so there is no need of changing the defines for each sub-project: kbc, kbide and kbrun and all three projects are now qmake based, so that the following script will compile it. Also removed the need to set defines for each platform before compilation, now it is automatically done.

Compiling the project on Windows can be achieved by using Qt Creator.

Code: Select all
#!/bin/bash

cd kbc
rm moc*
qmake kbc.pro
make -j4

cd ..
cd kbide
rm moc*
qmake kbide.pro
make -j4

cd ..
cd kbrun
rm moc*
qmake kbrun.pro
make -j4
berndnoetscher
Site Admin
 
Posts: 1059
Joined: Tue Sep 25, 2007 9:37 am

Return to Anything Else

cron