Okay bear with me, convert from java and I normally command line code things. I want to start a decent sized project in c++, a game to be exact, and I don't quite understand the file structure behind a c++ program.
I tried codeblocks, but I always have trouble adding new code files, and to be honest I'd prefer command line, and my google skills are failing me in finding standard file structure.
In java, and hopefully I was doing it right, you just had a main file which could start everything up, and so long as things were in the same location as the main or were referenced correctly in packages, it would have access to all it needs and could run.
Is it similar in c++, and if I have to provide specific library access to users, such as qt, is there a standard for that?
Sorry if this isn't clear, don't know how else to phrase the question.