I'm working on windows. How to include the CDS library in VS project? I could not find 'include' directory, nor 'lib' directory.
我在窗户上工作。如何在VS项目中包含CDS库?我找不到'include'目录,也找不到'lib'目录。
http://libcds.sourceforge.net/doc/cds-api/index.html
1 个解决方案
#1
0
It seems to be a header only library, just put it in a folder and add a include directory to that folder with visual studio under Properties->VC++ Directories->Include Directory
and then all you have to do is
它似乎只是一个标题库,只需将它放在一个文件夹中,然后在Properties-> VC ++ Directories-> Include Directory下使用visual studio将include目录添加到该文件夹,然后你所要做的就是
#include <FolderWhereCDSIsAt\allocator.h>
or
#include <FolderWhereCDSIsAt\cache_line.h>
#1
0
It seems to be a header only library, just put it in a folder and add a include directory to that folder with visual studio under Properties->VC++ Directories->Include Directory
and then all you have to do is
它似乎只是一个标题库,只需将它放在一个文件夹中,然后在Properties-> VC ++ Directories-> Include Directory下使用visual studio将include目录添加到该文件夹,然后你所要做的就是
#include <FolderWhereCDSIsAt\allocator.h>
or
#include <FolderWhereCDSIsAt\cache_line.h>