梁某人

发展才是硬道理

导航

Unreal Engine Plugin management

Be aware to remove any dependencies to any modules related to Editor,

or else it will end up with failure of packaging.

#if WITH_EDITOR

#endif

is your good friend.

 

for developing purpose,  just copy plugins' "Editor-blabla.dll" to developers' engine plugin folder for them to use.

programmer team get the project.exe built and link with plugin dlls  before pushing to GIT,  then it's built in CI server.

in other word,  the project's exe file has to be built with all dependent plugins' source code but not only static library.

maybe I can find a way that we can simply copy the plugins' static libraries back to plugins folder for specific folder and kick off the build,

but I don't want to spend more time on it since the whole day has been wasted to explore the stupid settings.

 

That also means,  the project has to be a C++ project but not Blueprint-Only project.

posted on 2015-05-23 12:25  涛仔28  阅读(300)  评论(0编辑  收藏  举报