mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-22 20:53:44 +02:00
26 lines
394 B
Plaintext
26 lines
394 B
Plaintext
First build
|
|
-----------
|
|
|
|
bzr checkout -r 3378 lp:kicad kicad.bzr
|
|
cd kicad.bzr
|
|
ln -s wherever/eda-tools/kicad-patches patches
|
|
quilt push -a
|
|
cmake -DKICAD_TESTING_VERSION=ON .
|
|
make -j 5
|
|
make install
|
|
|
|
|
|
Rebuild with new/changed patches
|
|
--------------------------------
|
|
|
|
# update the patches
|
|
git pull
|
|
|
|
# rebuild KiCad
|
|
cd wherever/kicad.bzr
|
|
quilt pop -af
|
|
quilt push -a
|
|
cmake .
|
|
make -j 5
|
|
make install
|