How can I build RDKits C# Wrappers — Visual Studio 2019 x64

后端 未结 1 444
渐次进展
渐次进展 2021-01-27 04:06

I have followed the steps described here: https://github.com/bp-kelley/rdkit-csharp to try and create RDKits C# Wrappers.

git clone https://github.com/bp-kelley/         


        
相关标签:
1条回答
  • 2021-01-27 04:32

    Try changing your cmake call to this:

    cmake -G "Visual Studio 16 2019" -A x64 ... [rest of your CMake options] ...

    Here is the documentation for the different platform names (architectures) you can use with VS 2019.

    As the error message in your question suggests, CMake used to support specifying Win64 along with the Visual Studio version, like this: "Visual Studio 15 2017 Win64". However, they have stopped supporting that as of Visual Studio 16 2019, forcing us to use the -A x64 approach.

    0 讨论(0)
提交回复
热议问题