How can I configure my default OpenCV settings for all my Visual Studio C ++ projects?

To manually edit the settings for each new project that I create is quite tedious. And this is pretty error prone, so I sometimes forget to add something and compile the Error.

Is it possible to configure Visual Studio so that the settings that I need for OpenCV are automatically applied to each new project?

By the way, I am using Visual Studio 2010.

+4
source share
3 answers

CMake ( OpenCV) . () IDE OpenCV.
, - CMakeLists.txt .

+1

You can import / export your project settings. In Visual Studio (2010), goto Tools -> Import and Export Settings.. There you can backup / save / export the current project settings. Now every time you create a new project, import this parameter, and you will not need to repeat the full procedure.

0
source

Source: https://habr.com/ru/post/1546945/


All Articles