I have a project written in C++ that depends on a local file. At runtime, I read that file from disk. When I build the project an .exe file is generated, but I still need that file on disk for the program to work. I use Visual Studio 2019 to build the program. Is it possible to embed that file into the executable?
The final goal is to ship only the executable file, so that it can be executed on other computers that do not have that file on local disk.