Library file dependent on sketch file not compiling in Arduino IDE #2547
Labels
arduino-builder
The tool used to handle the Arduino sketch compilation process
arduino-cli
Related to the arduino-cli tool
Component: Compilation
Related to compilation of Arduino sketches
feature request
A request to make an enhancement (not a bug fix)
Type: Duplicate
Another item already exists for this topic
Please change Arduino IDE so it can compile library files that depend on sketch files.
Usually project files depend on library files.
But sometimes its useful to have dependences in the other direction.
In the following example, a library file depends on a sketch file.
Here is the example's directory structure:
Each sketch has a CustomClass.h file.
The code within the customClass files is different for each sketch.
LibClass.h includes CustomClass.h
Downloaded example code here: libClass_depend_on_sketchClass.zip
To compile sketch1.ino on Arduino 1.0.6 IDE, the user needs to move the corresponding CustomClass.h into lib_folder.
To compile sketch2.ino, the user needs to move that CustomClass.h into lib_folder.
Moving files in and out of libraries is dangerous and requires deleting Arduino's AppData\Local\Temp\build folder.
All the CustomClass files are moved in and out of the library every time all the sketchX.ino programs are regression tested.
Regression testing each versions of sketchX.ino will become impractical as more versions of sketchX.ino are added.
And instructing library users to move CustomClasses into the library is not very user friendly.
This is how one application describes the work around in its user guide:
https://github.com/wolfv6/keybrd/blob/master/doc/keybrd_library_user_guide.md#populate-arduinolibraries-with-keybrd-library-sym-links
If CustomClass.h is not moved into the lib_folder, Arduino 1.0.6 IDE does not find the CustomClass.h file.
Here is the verbose error message:
Please change Arduino IDE so it can compile library files that depend on sketch files.
The text was updated successfully, but these errors were encountered: