Make build istruction more frendly to avoid non-clear builds
This commit is contained in:
parent
1691790d10
commit
7f36eb711b
14
README.adoc
14
README.adoc
|
@ -12,12 +12,18 @@ principles for KiCad.
|
||||||
|
|
||||||
== How to install
|
== How to install
|
||||||
```
|
```
|
||||||
cd kicad-i18n
|
$ cd kicad-i18n
|
||||||
cmake .
|
$ _PWD=$(pwd)
|
||||||
make
|
$ mkdir -p ~/tmp/kicad-i18n-build
|
||||||
make install
|
$ cd ~/tmp/kicad-i18n-build
|
||||||
|
$ cmake ${_PWD}
|
||||||
|
$ make
|
||||||
|
$ make install
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want to change the default install prefix to match your KiCad
|
If you want to change the default install prefix to match your KiCad
|
||||||
build, you can add for
|
build, you can add for
|
||||||
example use `-DCMAKE_INSTALL_PREFIX=/usr`.
|
example use `-DCMAKE_INSTALL_PREFIX=/usr`.
|
||||||
|
|
||||||
|
If you occurred some problems, use `cmake --trace` instead `cmake' to
|
||||||
|
make build log more verbose, when you fill issue report.
|
||||||
|
|
Loading…
Reference in New Issue