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