mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Ignore VS linker warning 'LNK4199: /DELAYLOAD:*.dll ignored; no imports found from *.dll'
This commit is contained in:
parent
6f3a18a805
commit
c477579843
2 changed files with 4 additions and 5 deletions
|
@ -11,15 +11,11 @@ project "bgfx"
|
||||||
BGFX_DIR .. "../bx/include",
|
BGFX_DIR .. "../bx/include",
|
||||||
}
|
}
|
||||||
|
|
||||||
buildoptions {
|
|
||||||
-- "-Wall",
|
|
||||||
}
|
|
||||||
|
|
||||||
defines {
|
defines {
|
||||||
-- "BGFX_CONFIG_RENDERER_OPENGL=1",
|
-- "BGFX_CONFIG_RENDERER_OPENGL=1",
|
||||||
}
|
}
|
||||||
|
|
||||||
configuration "Debug"
|
configuration { "Debug" }
|
||||||
defines {
|
defines {
|
||||||
"BGFX_CONFIG_DEBUG=1",
|
"BGFX_CONFIG_DEBUG=1",
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,6 +61,9 @@ function exampleProject(_name, _uuid)
|
||||||
}
|
}
|
||||||
|
|
||||||
configuration { "vs*" }
|
configuration { "vs*" }
|
||||||
|
linkoptions {
|
||||||
|
"/ignore:4199", -- LNK4199: /DELAYLOAD:*.dll ignored; no imports found from *.dll
|
||||||
|
}
|
||||||
links { -- this is needed only for testing with GLES2/3 on Windows with VS2008
|
links { -- this is needed only for testing with GLES2/3 on Windows with VS2008
|
||||||
"DelayImp",
|
"DelayImp",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue