ID:994834
 
Applies to:DM Language
Status: Open

Issue hasn't been assigned a status value.
//  Instead of this:
#include <forum_account\keyboard\keyboard.dme>

// This (case-insensitive):
#include <Forum_account.Keyboard>
++
Why do you need to use #include manually?
I usually just stuff any libraries in a separate folder called "libraries". It saves me the trouble of having to install obscure BYOND libraries on another computer if I want to compile my project on it.

A middle ground in this could be a feature to automate moving libraries over to the local project. I think this may be better for a lot of developers in the long run because when a library is updated or removed you don't lose access to it.
I've never been a fan of using #include, I always just copy over the relevant code files to prevent the problem that JBoer describes from ever happening.