How to add DETAILS in Compiled C++ program | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

10th Dec 2020, 6:08 PM
🌀 Shail Murtaza شعیل مرتضیٰ
🌀 Shail Murtaza شعیل مرتضیٰ - avatar
1 Answer
+ 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,
10th Dec 2020, 7:35 PM
Flash