wjwwood / serial

Cross-platform, Serial Port library written in C++
http://wjwwood.github.com/serial/
MIT License
2.13k stars 1.04k forks source link

serial.vcxproj: AdditionalIncludeDirectories relative for solution not project #105

Closed ramirahikkala closed 9 years ago

ramirahikkala commented 9 years ago

If I add serial.vcxproj to my solution header files cannot be found. AdditionalIncludeDirectories should be relative for project to make it possible to add project to other solutions too.

It is now like this: $(SolutionDir)..\include;%(AdditionalIncludeDirectories) Should be: $(ProjectDir)....\include;%(AdditionalIncludeDirectories)

wjwwood commented 9 years ago

Thanks for pointing that out! Can you open a pull request to that effect? That way it will attributed to you and our CI can automatically test it.