如何将扩展项链接到项目(Visual Studio C ++)

时间:2013-05-25 21:26:37

标签: c++ visual-studio-2012 nuget

我刚刚安装了以下库 https://github.com/scottdensmore/callisto/tree/cpp 通过NuGet和C ++中的扩展和更新Manaer。

但是如何将库链接到我的项目。

使用Callisto.Controls;给我Callisto没有定义

提前获得帮助

编辑:我尝试了#pragma comment(lib,“Callisto”)和#pragma comment(lib,“callisto”),但它无效。 我也不知道它直接通过visual studio和/或NuGet安装的扩展名的确切名称

2 个答案:

答案 0 :(得分:0)

要链接lib文件,请在源文件中放置如下所示的行:

#pragma comment( lib, "name_of_lib_file" )

MSDN Reference

答案 1 :(得分:0)

在您的项目工作区,尝试转到工作区管理器(就像这样),您将在下面projects看到如下文件夹:Source,{{1 },Resources。现在,右键单击Headers文件夹,然后添加类似Resources的内容(我已经忘记了,因为我切换到Code :: Blocks),然后找到库的Add dependency文件。