The Arduino library.properties specification gives the includes entry:
includes - (available from Arduino IDE 1.6.10) (optional) a comma separated list of files to be added to the sketch as #include <...> lines. This property is used with the "Include library" command in the Arduino IDE. If the includes property is missing, all the header files (.h) on the root source folder are included.
Adding this will prevent both Time.h and TimeLib.h from being included in the IDE with the include library menu option.
The Arduino library.properties specification gives the
includes
entry:Adding this will prevent both Time.h and TimeLib.h from being included in the IDE with the include library menu option.