-
-
Notifications
You must be signed in to change notification settings - Fork 617
syslibdirs
Jason Perkins edited this page May 26, 2015
·
4 revisions
Specifies the system library search paths.
syslibdirs { "paths" }
For Visual Studio, these paths are placed in the "VC++ Directories" properties panel. For all other tools they are treated as a normal library search path.
Solutions, projects, and configurations.
Premake 5.0 or later.
paths specifies a list of library search directories. Paths should be specified relative to the currently running script file.
Define two system include file search paths.
sysincludedirs { "../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.
sysincludedirs { "../includes/**" }