Arcull, C++ isn't Basic. There is no such thing like "source code library" in C++. Either you include a source file in the project and the file get compiled and used to build your app or the file does not exist for the project at all. Period. Libraries exist in C++ only at the object file level: you must build the library first and then you can use it in subsequent projects. C++ is a compiled language.
Even if you succeed in specifying a directory where .cpp files are, all source files from that directory will be included in your project. That's something you surely do not want.
Bookmarks