CMAKE error project files invalid ; does not contain cmakelists.txt

匿名 (未验证) 提交于 2019-12-03 01:36:02

问题:

I am trying to compile the code from the following website on a 64 bit windows computer..

https://dms.sztaki.hu/en/project/gaussian-mixture-modeling-gmm-es-fisher-vector-toolkit

I am getting the following errors:

1) error configuration.. project files may be invalid
2) CMake Error: The source directory "/GMM_Fisher_toolkit/GMM_CUDA_src" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.

How can I compile it?

回答1:

To create an out-of-source build:

  1. Extract your source code to ~/src/test
  2. Create a folder ~/build/test
  3. Goto: ~/build/test
  4. Run: cmake ../../src/test
  5. Run: make


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!