Add Library to Visual Studio 2008 C++ Project

橙三吉。 提交于 2019-11-27 08:16:17

It's under Project Properties / Configuration Properties / Linker / Input / Additional Dependencies.

The help tip at the bottom of the screen says "Specifies additional items add to the line line (ex: kernel32.lib)".

Paul

Project Properties->Linker->Input->Additional Dependencies

You can also use #pragma comment( lib, "mapi32" ) in one of your source files. As noted MSDN here is a similar library addition using the pragma technique MSDN - Creating a Basic Winsock Application

#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdio.h>

#pragma comment(lib, "Ws2_32.lib")

int main() {
  return 0;
}

Three simple steps:

  1. Project Properties->Linker->General->Additional Library Directories choose the folder which contains your .lib file

2.Project Properties->Linker->Input->Additional Dependencies Just enter the name of your .lib files

3.Project Properties->C/C++->General->Additional Include Directories choose the folder where your .h files locate

It is also possible to just drag'n'drop library file to project in Solution Explorer.

Do not statically link to any MAPI dlls. You must always dynamically load the MAPI system - look at the MFCMAPI source code to see how it is done: http://mfcmapi.codeplex.com/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!