Premake: Set libraries' rpath to current folder (#199)
* Set libraries' rpath to . * Update changelog
This commit is contained in:
parent
90609476e9
commit
f4e6f6a44f
|
|
@ -19,6 +19,7 @@ Miscellaneous:
|
|||
- When supported, projects are now parts of a virtual "workspace group" according to their kind
|
||||
- Fixed .dll copy when building Nazara occuring on Linux when targeting Windows (MinGW)
|
||||
- ⚠ Appveyor nightlies are now compiled with VS2017
|
||||
- Set libraries' rpath to current folder (.)
|
||||
|
||||
Nazara Engine:
|
||||
- VertexMapper:GetComponentPtr no longer throw an error if component is disabled or incompatible with template type, instead a null pointer is returned.
|
||||
|
|
|
|||
|
|
@ -876,6 +876,7 @@ function NazaraBuild:PrepareMainWorkspace()
|
|||
|
||||
-- Add lib/conf/arch to library search path
|
||||
self:FilterLibDirectory("../lib/", libdirs)
|
||||
self:FilterLibDirectory("../lib/", runpathdirs)
|
||||
|
||||
filter("action:vs*")
|
||||
buildoptions({"/MP", "/bigobj"}) -- Multiprocessus build and big .obj
|
||||
|
|
|
|||
Loading…
Reference in New Issue