Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cmake_minimum_required(VERSION 2.8)
- project(CCoda)
- set(CMAKE_BUILD_TYPE Release)
- file(GLOB python_binding_src "../src/nlp-stack/*/*PythonExtension*.cpp")
- file(GLOB python_binding_h "../src/nlp-stack/*/*PythonExtension*.h")
- file(GLOB_RECURSE all_h "../src/nlp-stack/*/*.h")
- add_library(ccoda SHARED ${all_h} ${python_binding_h} ${python_binding_src})
- =========================================
- -- Configuring done
- -- Generating done
- -- Build files have been written to: /home/xxx/Fitness_Bot/Coda/c_interface
- Scanning dependencies of target ccoda
- [ 20%] Building CXX object CMakeFiles/ccoda.dir/home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.cpp.o
- In file included from /home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.cpp:1:0:
- /home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.h:3:33: fatal error: DictionaryInterface.h: Нет такого файла или каталога
- #include "DictionaryInterface.h"
- ^
- compilation terminated.
- CMakeFiles/ccoda.dir/build.make:62: ошибка выполнения рецепта для цели «CMakeFiles/ccoda.dir/home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.cpp.o»
- make[2]: *** [CMakeFiles/ccoda.dir/home/xxx/Fitness_Bot/Coda/src/nlp-stack/Dictionary/PythonExtension.cpp.o] Ошибка 1
- CMakeFiles/Makefile2:67: ошибка выполнения рецепта для цели «CMakeFiles/ccoda.dir/all»
- make[1]: *** [CMakeFiles/ccoda.dir/all] Ошибка 2
- Makefile:83: ошибка выполнения рецепта для цели «all»
- make: *** [all] Ошибка 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement