microsoft / opencv

Open Source Computer Vision Library
opencv.org
Apache License 2.0
144 stars 92 forks source link

Change opencv_winrt to build like all the other projects #70

Closed ljw1004 closed 8 years ago

ljw1004 commented 8 years ago

Currently, almost all projects place their LIB/EXP files in the "lib" directory. The only exception is opencv_winrt: it places its LIB/EXP files in the "bin" directory. I think that "lib" is the most logical place. This PR places it there.

Currently, almost all projects turn off incremental linking and link-time code generation. The only exception is opencv_winrt: it has them on, and so generates .IPDB file. I've not seen any reason for why it does this, and I think the default assumption should be that it should be just like all the other projects. This PR makes it like the other projects.