OpenCV 3.0 problems building dlls and libs
Ive downloaded OpenCV3.0 via Github and TortoiseGit from https://github.com/Itseez/opencv and build it via CMake without problems. Then I tried to compile it via MSVC11 2012 on my Win7 64bit-pc by opening OpenCV.sln and generating the Debug and Release-DLLs/Libs by pressing F7. opencv_cudev300d.dll/opencv_cudev300.dll and opencv_cudev300.lib/opencv_cudev300d.lib got built successfully, but after that i get mainly two errors: LNK1104: File "....\lib\Debug\opencv_core300d.lib" cannot be opened and MSB6006 cmd.exe gets executed with code 1
Anyone can help me out?
Do you use cmake defualt value? I think maybe you should check and try all options.
You should try new version of Cmake (http://www.cmake.org/download/) to see if the problem is solved.
Are you sure that the CMAKE config is building for 64 bit and not for 32 bit systems? Just a guess!
I always thought my MSVC 2012 Express-Installation covers 64Bit-Code, but after your comments i learned that it only covers 32Bit. I once again built the DLLs and Libs with 32Bit and it all runs fine, thanks for your help! :) Will also try to include Win 7.1 SDK to get it working with 64Bit.