I'm working on windows. How to include the CDS library in VS project? I could not find 'include' directory, nor 'lib' directory.
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
#include <FolderWhereCDSIsAt\allocator.h>
or
#include <FolderWhereCDSIsAt\cache_line.h>