zoukankan      html  css  js  c++  java
  • 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.

  • 相关阅读:
    关于浏览器及系统的判断
    toggle与slideToggle
    安卓与ios的不同处理
    关于常用循环遍历获取数据
    docker
    Mysql
    rabbitMQ的使用转载
    Git命令行
    vue项目创建完整版
    redis操作(str.hash.list.set)
  • 原文地址:https://www.cnblogs.com/xiaotaoliang/p/4523966.html
Copyright © 2011-2022 走看看