Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compiling and linking third party libraries in VS 2015 [duplicate]

I'm working on a C++ project using Visual Studio 2015 I'm trying to link an external library (in this instance libtins). The library currently resides on my desktop.

I've tried editing the project settings, under Linker settings, but it doesn't give me any option to include any custom libraries.

How do I do this in VS 2015?

like image 723
BugHunterUK Avatar asked Jun 24 '15 15:06

BugHunterUK


1 Answers

adding to the linker is not enough you need also to add the include library: properties -> C/C++ ->general -> additional include directories

like image 159
Proxytype Avatar answered Nov 18 '22 09:11

Proxytype