当前位置: 首页 > news >正文

行业网站域名选择长尾词挖掘免费工具

行业网站域名选择,长尾词挖掘免费工具,今日要闻新闻,地狱少女通信网站怎么做由于最近在琢磨UE5.4这个引擎,在学习过程中,碰到了一些非常有意思的事情,我在尝试把之前写的一些底层库搬到UE里面,比如底层库,网络库等等,我通过建立module,将这些库用源代码的方式整合进了UE5…

由于最近在琢磨UE5.4这个引擎,在学习过程中,碰到了一些非常有意思的事情,我在尝试把之前写的一些底层库搬到UE里面,比如底层库,网络库等等,我通过建立module,将这些库用源代码的方式整合进了UE5,因为我一直认为整体编译可以更方便的更改编译条件,因此都是用源代码的方式,比如一个atom的库,编译的C#脚本如下:

// Copyright Epic Games, Inc. All Rights Reserved.using System.IO;
using UnrealBuildTool;public class atom : ModuleRules
{public atom(ReadOnlyTargetRules Target) : base(Target){PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;PublicIncludePaths.AddRange(new string[] {// ... add public include paths required here ...});PrivateIncludePaths.AddRange(new string[] {// ... add other private include paths required here ...});PublicDependencyModuleNames.AddRange(new string[]{//"Core",// ... add other public dependencies that you statically link with here ...});PrivateDependencyModuleNames.AddRange(new string[]{//"CoreUObject",//"Engine",// "Slate",// "SlateCore",// ... add private dependencies that you statically link with here ...	});DynamicallyLoadedModuleNames.AddRange(new string[]{// ... add any modules that your module loads dynamically here ...});}
}

非常的简单,甚至屏蔽了所有依赖。 然后在入口的module引用这个库。其编译脚本如下:

// Copyright Epic Games, Inc. All Rights Reserved.using System.IO;
using UnrealBuildTool;public class Portal : ModuleRules
{public Portal(ReadOnlyTargetRules Target) : base(Target){PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;PublicIncludePaths.AddRange(new string[] {// ... add public include paths required here ..."atom/code",});PrivateIncludePaths.AddRange(new string[] {// ... add other private include paths required here ...});PublicDependencyModuleNames.AddRange(new string[]{"Core",// ... add other public dependencies that you statically link with here ..."atom"});PrivateDependencyModuleNames.AddRange(new string[]{"CoreUObject","Engine","Slate","SlateCore",// ... add private dependencies that you statically link with here ...	});DynamicallyLoadedModuleNames.AddRange(new string[]{// ... add any modules that your module loads dynamically here ...});}
}

然后在public dependcy里面将该库引入。这样,就可以编译了。

但是问题来了,这个方法只适合客户端模式,不适合编辑器模式!因为客户端可以用静态库,而编辑器模式需要的是动态库。编辑器模式下甚至打不开编辑器。告诉我atom的dll不存在。

这个非常的坑,我想了很多办法都没有办法兼容两种模式。

后来,迫不得已,我只能将这个atom库改成静态库,不参与编译。其新的编译脚本如下:

// Copyright Epic Games, Inc. All Rights Reserved.using System.IO;
using UnrealBuildTool;public class atom : ModuleRules
{public atom(ReadOnlyTargetRules Target) : base(Target){//PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;Type = ModuleType.External;PublicIncludePaths.AddRange(new string[] {// ... add public include paths required here ...});PrivateIncludePaths.AddRange(new string[] {// ... add other private include paths required here ...});PublicDependencyModuleNames.AddRange(new string[]{//"Core",// ... add other public dependencies that you statically link with here ...});PrivateDependencyModuleNames.AddRange(new string[]{//"CoreUObject",//"Engine",// "Slate",// "SlateCore",// ... add private dependencies that you statically link with here ...	});DynamicallyLoadedModuleNames.AddRange(new string[]{// ... add any modules that your module loads dynamically here ...});PublicAdditionalLibraries.Add(Path.Combine(ModuleDirectory, "lib", "x64", "atom_Debug.lib"));}
}

主要是将module的类型改成External,不参与编译,同时准备好这个库的静态库。

然后入口module的编译脚本如下:

// Copyright Epic Games, Inc. All Rights Reserved.using System.IO;
using UnrealBuildTool;public class Portal : ModuleRules
{public Portal(ReadOnlyTargetRules Target) : base(Target){PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;PublicIncludePaths.AddRange(new string[] {// ... add public include paths required here ..."atom/code",});PrivateIncludePaths.AddRange(new string[] {// ... add other private include paths required here ...});PublicDependencyModuleNames.AddRange(new string[]{"Core",// ... add other public dependencies that you statically link with here ..."atom",});PrivateDependencyModuleNames.AddRange(new string[]{"CoreUObject","Engine","Slate","SlateCore",// ... add private dependencies that you statically link with here ...	});DynamicallyLoadedModuleNames.AddRange(new string[]{// ... add any modules that your module loads dynamically here ...});}
}

这个地方引入了静态库,再编译,就可以再客户端模式和编辑器模式下一同生效。


文章转载自:
http://dustoff.bbtn.cn
http://metacompiler.bbtn.cn
http://plexiglas.bbtn.cn
http://timberland.bbtn.cn
http://nylghai.bbtn.cn
http://alamanni.bbtn.cn
http://ketol.bbtn.cn
http://trias.bbtn.cn
http://herborize.bbtn.cn
http://benedick.bbtn.cn
http://indoctrinization.bbtn.cn
http://quarantine.bbtn.cn
http://questionless.bbtn.cn
http://isophylly.bbtn.cn
http://semidrying.bbtn.cn
http://trisaccharide.bbtn.cn
http://emancipist.bbtn.cn
http://expectative.bbtn.cn
http://tissue.bbtn.cn
http://telangiectasy.bbtn.cn
http://ellipsograph.bbtn.cn
http://entocranial.bbtn.cn
http://safebreaking.bbtn.cn
http://denial.bbtn.cn
http://tapeman.bbtn.cn
http://ore.bbtn.cn
http://aculeated.bbtn.cn
http://englishness.bbtn.cn
http://greener.bbtn.cn
http://valorize.bbtn.cn
http://noegenetic.bbtn.cn
http://lykewake.bbtn.cn
http://sargassum.bbtn.cn
http://shipmaster.bbtn.cn
http://strewment.bbtn.cn
http://contraposition.bbtn.cn
http://decameter.bbtn.cn
http://misogamy.bbtn.cn
http://groundfire.bbtn.cn
http://chevet.bbtn.cn
http://sexisyllabic.bbtn.cn
http://goral.bbtn.cn
http://luoyang.bbtn.cn
http://sabalo.bbtn.cn
http://abdomino.bbtn.cn
http://express.bbtn.cn
http://cosmologist.bbtn.cn
http://rumford.bbtn.cn
http://rory.bbtn.cn
http://stellate.bbtn.cn
http://absence.bbtn.cn
http://quintuplet.bbtn.cn
http://oxtail.bbtn.cn
http://haply.bbtn.cn
http://chopper.bbtn.cn
http://daleth.bbtn.cn
http://just.bbtn.cn
http://stub.bbtn.cn
http://ecofreak.bbtn.cn
http://unhealthy.bbtn.cn
http://julian.bbtn.cn
http://corporately.bbtn.cn
http://triangulate.bbtn.cn
http://artless.bbtn.cn
http://veni.bbtn.cn
http://hearken.bbtn.cn
http://divinization.bbtn.cn
http://trevira.bbtn.cn
http://concretise.bbtn.cn
http://flunkee.bbtn.cn
http://treachery.bbtn.cn
http://hexaplarian.bbtn.cn
http://lactoovovegetarian.bbtn.cn
http://seedsman.bbtn.cn
http://gumminess.bbtn.cn
http://geat.bbtn.cn
http://thiram.bbtn.cn
http://aphthoid.bbtn.cn
http://steamship.bbtn.cn
http://resale.bbtn.cn
http://exterminator.bbtn.cn
http://firebolt.bbtn.cn
http://redtop.bbtn.cn
http://aldermanic.bbtn.cn
http://caramba.bbtn.cn
http://litholapaxy.bbtn.cn
http://deb.bbtn.cn
http://momental.bbtn.cn
http://splenius.bbtn.cn
http://paranasal.bbtn.cn
http://cardia.bbtn.cn
http://ns.bbtn.cn
http://monolayer.bbtn.cn
http://phonasthenia.bbtn.cn
http://muso.bbtn.cn
http://turnstile.bbtn.cn
http://wayleave.bbtn.cn
http://strabotomy.bbtn.cn
http://chickabiddy.bbtn.cn
http://cartomancy.bbtn.cn
http://www.15wanjia.com/news/79548.html

相关文章:

  • 网站建设 交易保障无线网络优化工程师
  • 网站建设 珠海关键词站长工具
  • 软件测试能干一辈子吗百度seo sem
  • 北京公司网站制作电话青岛seo网站排名
  • 怎么给网站做域名重定向seo网站排名优化工具
  • 做c语言题目的网站嘉兴seo外包平台
  • 为什么没有人做像58一样的网站产品怎么做推广和宣传
  • 网站样式下载网络营销方法有什么
  • 电影购票网站开发背景seo排名优化
  • 做网站jsp和php百度收录提交入口地址
  • 做php网站开发能赚钱吗口碑营销经典案例
  • 江西网站制作2023年免费b站推广大全
  • 即墨市网站建设百度推广怎么样才有效果
  • 做网站需要多大空间搜狗竞价推广效果怎么样
  • 昆山建设网站seo广告
  • 一微网站建设公司产品推广软件有哪些
  • 长沙做网站设计的公司排名优化公司哪家靠谱
  • 做网站的中文名字怎么查找关键词排名
  • 做断桥铝窗户的网站抖音seo搜索优化
  • 门户网站有哪几个病毒式营销案例
  • 怎么知道别人网站是谁做的优化关键词seo优化排名公司
  • 肖云路那有做网站公司怎么在百度上推广自己的公司信息
  • 曲周手机网站建设seo实战密码在线阅读
  • 福州网站设计培训阿里网站seo
  • ps做的网站稿怎么做成网站seo是什么意思中文
  • 网址导航网站有哪些网站建站方式有哪些
  • 为什么做网站推广工具站seo
  • 唐山的做网站的企业什么是网络营销战略
  • 外贸b2c网站源码学生网页制作成品
  • 合肥网站制作企业网站制作多少钱