When you buy a game at the store, and want to play it on your computer, you do the following:
(1) Run a setup.exe
(2) Install on computer
(3) End up with an exe on your desktop (separate from its source files, asset files, etc.)
(1) How do I format my program (created from Visual Studio) to be like that?
The farthest I have toward this goal is how my folder is currently structured:
Main Folder: [Folder]
Program.exe
Main.cpp
Header.h
Class.cpp
sfml.dll
Assets [Folder]
Picture.png
Music.wav
(2) If you do not know how to completely separate my .exe from my source and asset files, then do you know how to be able to put my source, header, and sfml DLL's into a folder like the following:
Main Folder: [Folder]
Program.exe
Assets [Folder]
Picture.png
Music.wav
Source [Folder]
Main.cpp
Header.h
Class.cpp
sfml.dll
(3) Or if you know how to just bundle everything into 1 exe..
Any help will be greatly appreciated!