-
Notifications
You must be signed in to change notification settings - Fork 3
package_get
Tom van Dijck edited this page Jun 4, 2015
·
3 revisions
Gets a previously imported package.
function package.get(name)
The name of a package to get.
nil if the package could not be found, otherwise a pointer to a package.
local p = package.get('blz_concurrent')
if not p then
print('blz_concurrent was not imported')
end
Premake 5.0.0 or later.