Skip to content
This repository was archived by the owner on Dec 25, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (18 loc) · 883 Bytes

File metadata and controls

32 lines (18 loc) · 883 Bytes

Building HamCC

In general, you should have a supported Python version installed already (currently >= 3.10).

Checkout the git repo

# git clone git@github.com:gitandy/HamCC.git

Building on Linux

Simply run

# make build_devenv && make test

Now fire up your preferred Development tool, point your Python environment to the newly created venv and have fun.

Building on Windows

First you should have installed a windows build of the GNU development tools. I prefer a cygwin install with basic tools + make and git.

Start a CMD-Prompt in your working copy and make sure Python and PIP are on your path (only needed for build_devenv)

YOUR_PATH> make.bat build_devenv
YOUR_PATH> make.bat test

Now fire up your preferred Development tool, point your Python environment to the newly created venv and have fun.