0
OpenCv
ライブラリを使用してpython
にプログラムを書いています。私のプロジェクトフォルダはFooで、内部にはイメージと実行可能ファイルがあります。私CmakeLists.txt
は次のようになります。私のpython 2.7とLinux 16.04を使用していますPythonとOpenCvとのリンク
-- Configuring done
CMake Error: CMake can not determine linker language for target: Foo
CMake Error: Cannot determine link language for target "Foo".
-- Generating done
-- Build files have been written to: /home/user_name/OpenCv/Foo
:
cmake_minimum_required(VERSION 2.8)
project(Foo)
find_package(OpenCV REQUIRED)
add_executable(Foo Im.py)
target_link_libraries(Foo ${OpenCV_LIBS} ${python2.7})
私は次のエラーを取得するcmake .
を実行します。
はい、働いていました!ありがとう! – Maria