queezythegreat / arduino-cmake

Arduino CMake Build system
644 stars 216 forks source link

Backwards compatibility with pre Arduino v1.0 #18

Closed queezythegreat closed 12 years ago

queezythegreat commented 12 years ago

Add backwards compatibility to Arduino CMake with previous versions of the Arduino IDE pre version 1.0.

Changes will require changing how the version is specified for pre 1.0 versions. The version had the following format:

00XX

where XX ranged from 01 to 23.

The old version format will be encoded as follows:

0.XX

For example, version 0022 will be specified as 0.22.

queezythegreat commented 12 years ago

Support for previous version of Arduino prior to 1.0 added.