I am working on an application with the end goal of it being an executable, and I would like to know what's a good workflow to achieve that? I also want everything the app needs to be embedded in the executable like images and persistent states.
A good example for a light exe app is sizer who's directory looks something like this:
|_ hook32.dll
|_ hook64.dll
|_ ReadMe.txt
|_ sizer.exe
|_ Stub64.dat
Basically everything the app needs to function is in the exe, including all the configurations you make (i assume they are also saved into the exe somehow, or maybe the .dat file)