Hi,
for a a project I am writting my own library. In it's header I want to add another library, so it's start with:
#include <Arduino.h>
#include <Servo.h>
I use visual micro with Visual Studio 2015 and test the code with the uno and the 101.
When I build the project for the 101, I get the Warning: "Servo.h: No such file or directory", when I build the project for the uno, I get no warning at all... and building ends with no problem shown. And also the uploading shows no problem.
Unforthantly I can not use the Uno for the project (it is only a sparfun redstick), because I the end I want to use the BLE capabilities of the 101...
When I use the same code base with the arduino IDE and the 101 building and uploading works normal and get a totally other error... I really would like to debug with the visual micro

A hint when adding #include <Servo.h>, I get the hint to use <Servo/Servo.h> or similar... <Servo/src/Servo.h> or a third version, but none of them works...