visual studio (vs2019) debug obs-studio

Through the address of the previous article: https://blog.csdn.net/lcalqf/article/details/107143815

The generated obs-studio project cannot be debugged by default, it will report lack of qt related dll and obs-studio failed to find locale/en-US.ini error

If you want to debug, you have to modify the vs compilation properties.

The specific modifications are as follows

1. Modify the output directory

Right-click the obs project--"Properties--"Configuration Properties---"General

change into:

Xx\rundir\Debug\bin\32bit under the program output path set when CMake builds the project

2. Modify the working directory of the program

 Right-click the obs project--"Properties--"Configuration Properties---"Debugging---"Working Directory

The same is also to modify the output path set when CMake builds the project

Guess you like

Origin blog.csdn.net/lcalqf/article/details/107144201