我正在尝试编译来自this link的mongo-c-driver关于this link中描述的内容。
我已经编译了libbson successfulty,当我尝试低于命令时,我得到The source directory "/" does not appear to contain CMakeLists.txt.
cmake -G "Visual Studio 14 2015 Win64" \ "-DCMAKE_INSTALL_PREFIX=C:\mongo-c-driver" \ "-DBSON_ROOT_DIR=C:\mongo-c-driver"
答案 0 :(得分:2)
使用vcpkg。 按照git上提到的说明进行操作 https://github.com/Microsoft/vcpkg
第1步
C:\ vcpkg>。\ vcpkg搜索mongodb
第2步
C:\ vcpkg>。\ vcpkg install mongo-c-driver
第3步
vcpkg集成安装
然后简单地使用visual studio来包含。 vcpkg很聪明,它会为你做所有后台工作。
你可能对此感兴趣。 How can I build a program using c++ driver of mongodb?