I use the MSVC++ environment for working on C++ projects. The program itself exists in a directory and contains a “lib” and “include” directory.
Now, sometimes I install various C additions, such as MySQL. This installs into a seperate directory, containing its own “lib” and “include” directories.
Is it considered best practice to just specify within the IDE to look into the MySQL (or whatever) directory for the necessary lib/include files? Or, is it acceptable to physically move these files into the IDE’s lib/include directories?
Secondly, when I begin a new project, it sticks all the files into a “My Projects” subdirectory. But since the actual project ties in elements from other additions (again, MySQL, etc.) then I’m wondering if it would be best to give these projects their own directory, off the root, seperate from the IDE’s directory?
I realize these questions are highly neurotic and pedantic to most people - but I’m willing to bet their are people on this board who give this stuff as much thought as I do