-
-
Notifications
You must be signed in to change notification settings - Fork 619
includedirs
starkos edited this page Apr 10, 2021
·
8 revisions
This wiki is no longer being maintained.
Specifies the include file search paths for the compiler.
includedirs { "paths" }
paths
specifies a list of include file search directories. Paths should be specified relative to the currently running script file.
Project configurations.
Premake 4.0 or later.
Define two include file search paths.
includedirs { "../lua/include", "../zlib" }
You can also use wildcards to match multiple directories. The * will match against a single directory, ** will recurse into subdirectories as well.
includedirs { "../includes/**" }