forked from premake/premake-core
-
Notifications
You must be signed in to change notification settings - Fork 0
frameworkdirs
Narendra Umate edited this page Feb 24, 2016
·
1 revision
Specifies the framework search paths for the linker.
frameworkdirs { "paths" }paths specifies a list of framework search directories. Paths should be specified relative to the currently running script file.
Project configurations.
Premake 5.0 or later.
Define three framework search paths.
frameworkdirs { "Library/MacOS/SDL2-2.0.3", "Library/MacOS/SDL2_image-2.0.0", "Library/MacOS/SDL2_ttf-2.0.12" }You can also use wildcards to match multiple directories. The * will match against a single directory, ** will recurse into subdirectories as well.
frameworkdirs { "../frameworks/**" }