+ 1
How to add DETAILS in Compiled C++ program
How to add DETAILS in Compiled C++ program Like Copyright, Product Name, Product Version etc In this place:: https://code.sololearn.com/WXvOe7gssVnl/?ref=app
1 ответ
+ 1
if Windows and MSVC then with Visual Studio, you can easily do that by going to "Resource View" and add a new resource called "Version" from the dialog box.
Or you can manually use "windres.exe" to get a ".res" and link it to your exe using "ld.exe" (GCC). There are other ways as well. Consult the documentation,