Build: Copy .dll only if host is Windows
This commit is contained in:
parent
8ffe7f14ba
commit
9ecfe31637
|
|
@ -17,6 +17,7 @@ Miscellaneous:
|
||||||
- NDEBUG is now defined in Release
|
- NDEBUG is now defined in Release
|
||||||
- Replaced typedefs keywords with modern using keywords
|
- Replaced typedefs keywords with modern using keywords
|
||||||
- When supported, projects are now parts of a virtual "workspace group" according to their kind
|
- 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)
|
||||||
|
|
||||||
Nazara Engine:
|
Nazara Engine:
|
||||||
- VertexMapper:GetComponentPtr no longer throw an error if component is disabled or incompatible with template type, instead a null pointer is returned.
|
- VertexMapper:GetComponentPtr no longer throw an error if component is disabled or incompatible with template type, instead a null pointer is returned.
|
||||||
|
|
|
||||||
|
|
@ -608,7 +608,7 @@ function NazaraBuild:LoadConfig()
|
||||||
end
|
end
|
||||||
|
|
||||||
function NazaraBuild:MakeInstallCommands(infoTable)
|
function NazaraBuild:MakeInstallCommands(infoTable)
|
||||||
if (os.istarget("windows")) then
|
if (os.ishost("windows")) then
|
||||||
filter("kind:SharedLib")
|
filter("kind:SharedLib")
|
||||||
|
|
||||||
postbuildmessage("Copying " .. infoTable.Name .. " library and its dependencies to install/executable directories...")
|
postbuildmessage("Copying " .. infoTable.Name .. " library and its dependencies to install/executable directories...")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue