frameworkdirs - ratzlaff/premake-core GitHub Wiki

Specifies the framework search paths for the linker.

frameworkdirs { "paths" }

Parameters

paths specifies a list of framework search directories. Paths should be specified relative to the currently running script file.

Applies To

Project configurations.

Availability

Premake 5.0 or later.

Examples

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/**" }