Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 625 Bytes

DEVELOPMENT.md

File metadata and controls

42 lines (24 loc) · 625 Bytes

Building kicad-amf-plugin

Preparation

  1. Install wxBuilder

https://github.com/wxFormBuilder/wxFormBuilder

  1. Install gettext

https://mlocati.github.io/articles/gettext-iconv-windows.html

  1. Install POedit

https://poedit.net/download

Python env

Locate the python shipped with KiCad (e.g C:\Program Files\KiCad\7.0\bin\python)

cd C:\Program Files\KiCad\7.0\bin
python -m venv .venv
source .venv/scripts/activate

Update translation

  1. Extract po files from py
xgettext.exe xxx.py
  1. Edit the po files in Poedit

Debug

The main.py is the entry point for debugging

Deploy