the Open Kinect drivers for Python on WindowsI made a Make file with CMake (link)をコンパイルしようとしていて、VC++ Expressでコンパイルしようとしました。WindowsでPython用Open Kinectドライバをコンパイルするときの問題
Pythonラッパーを除いて、すべてがコンパイルされているようです(ビューアのサンプルが動作します)。 freenect.libを別のフォルダに置き、衝突を防ぐfreenectの出力フォルダを変更しました。私は私が手にこのそれを変更し、cython_freenectをコンパイルしようとすると:
1>------ Build started: Project: ZERO_CHECK, Configuration: Release Win32 ------
2>------ Build started: Project: freenect, Configuration: Release Win32 ------
2> Creating library C:/IvoPython/Kinect/Driver/lib/Release/freenect.lib and object C:/IvoPython/Kinect/Driver/lib/Release/freenect.exp
2> freenect.vcxproj -> C:\IvoPython\Kinect\Driver\Release\freenect.dll
3>------ Build started: Project: freenect_sync, Configuration: Release Win32 ------
3> Creating library C:/IvoPython/Kinect/Driver/lib/Release/freenect_sync.lib and object C:/IvoPython/Kinect/Driver/lib/Release/freenect_sync.exp
3> freenect_sync.vcxproj -> C:\IvoPython\Kinect\Driver\Release\freenect_sync.dll
4>------ Build started: Project: cython_freenect, Configuration: Release Win32 ------
4>LINK : fatal error LNK1149: output filename matches input filename 'C:\IvoPython\Kinect\Driver\lib\Release\freenect.lib'
========== Build: 3 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
それはちょうどそれを作成したと私は手動でライブラリにリンクされているため、それは、ライブラリを見つけることができないという奇妙です。
のように任意の提案どのような私が間違ってやっていますか?私が知る限り、私はPython Wrapper for Windows guideのすべての手順に従った。
を構築;-) –