Raman Sharma
Raman Sharma

Reputation: 4571

Cannot find C++ ATL Libraries (atl.lib and atl120.dll) in Visual Studio 2013

I have a C++ project that uses the ATL library. In Visual Studio 2012, I used to see the following two files:

The corresponding Lib and DLL files are not to be found in the Visual Studio 2013 installation. Where can I find the corresponding files for VS2013?

Upvotes: 6

Views: 4993

Answers (1)

Raman Sharma
Raman Sharma

Reputation: 4571

In Visual Studio 2013, all the functionality inside the ATL DLL has been moved directly into the ATL headers. So there is no need for a DLL or the associated import lib. You just need to include the appropriate headers in your sources and all the functionality is built right into your binaries.

Upvotes: 6

Related Questions