We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
⚠️ We have a new website! Visit now for the most update to date documentation. This wiki is no longer being maintained.
Specifies the file search paths for using statements.
using
usingsdirs { "paths" }
paths specifies a list of file search directories. Paths should be specified relative to the currently running script file.
paths
Project configurations.
Premake 5.0 or later.
Define two using file search paths.
usingdirs { "../lib1", "../lib2" }
You can also use wildcards to match multiple directories. The * will match against a single directory, ** will recurse into subdirectories as well.
usingdirs { "../libs/**" }