Skip to content

Latest commit

 

History

History
14 lines (7 loc) · 1.31 KB

CONTRIBUTING.md

File metadata and controls

14 lines (7 loc) · 1.31 KB

Contributing to Gerber2PDF

Suggestions and pull-requests are always welcome. Consult the "help wanted" issues for stuff that is slightly higher priority.

General Workflow

If you'd like to make contributions to the project, the preferred method for the general public is to create a fork, make the changes and then create a pull request for that fork. Project collaborators should create a branch, make changes and then create a pull request for that branch.

Dependencies

Please keep dependencies to an absolute minimum. The vision is that the target user can download a single executable file and then use it. Any framework or library in use should either be so standard that all target systems are guaranteed to have it (C run-time, Win32 API on Windows, POSIX Threads on Linux, etc.) or statically linked into the project binary.

Another reason is to ease the build process for developers. Developers should be able to clone the repository and run "make", without installing anything other than the C++ compiler.