Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. cmake_minimum_required(VERSION 2.8)
  2.  
  3. project(CCoda)
  4.  
  5. set(CMAKE_BUILD_TYPE Release)
  6.  
  7. file(GLOB python_binding_src "../src/nlp-stack/*/*PythonExtension*.cpp")
  8. file(GLOB python_binding_h "../src/nlp-stack/*/*PythonExtension*.h")
  9.  
  10. file(GLOB_RECURSE all_h "../src/nlp-stack/*/*.h")
  11.  
  12. add_library(ccoda SHARED ${all_h} ${python_binding_h} ${python_binding_src})
  13.  
  14. =========================================
  15.  
  16. -- Configuring done
  17. -- Generating done
  18. -- Build files have been written to: /home/xxx/Fitness_Bot/Coda/c_interface
  19. Scanning dependencies of target ccoda
  20. [ 20%] Building CXX object CMakeFiles/ccoda.dir/home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.cpp.o
  21. In file included from /home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.cpp:1:0:
  22. /home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.h:3:33: fatal error: DictionaryInterface.h: Нет такого файла или каталога
  23. #include "DictionaryInterface.h"
  24. ^
  25. compilation terminated.
  26. CMakeFiles/ccoda.dir/build.make:62: ошибка выполнения рецепта для цели «CMakeFiles/ccoda.dir/home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.cpp.o»
  27. make[2]: *** [CMakeFiles/ccoda.dir/home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.cpp.o] Ошибка 1
  28. CMakeFiles/Makefile2:67: ошибка выполнения рецепта для цели «CMakeFiles/ccoda.dir/all»
  29. make[1]: *** [CMakeFiles/ccoda.dir/all] Ошибка 2
  30. Makefile:83: ошибка выполнения рецепта для цели «all»
  31. make: *** [all] Ошибка 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement