I've created some general-purpose classes I'd like to include in different projects. Problem is, it seems I have to include their files in every new project, which is undesirable, as I'm not going to edit them anymore. If I just set the search paths in the Build Options and add an "#include" on any file, it is considered undefined at compilation (it can't find the .cpp one, I suppose).
Is there a way I can #include those files in others but not in the project itself? Is it the case to build a library for them?