Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
MasterTestProjekt
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kai Westerkamp
MasterTestProjekt
Commits
f105761f
Commit
f105761f
authored
Feb 15, 2017
by
wester
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
assimp läuft
parent
21dc0221
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
9 deletions
+8
-9
Minimal_Default.umap
Content/MobileStarterContent/Maps/Minimal_Default.umap
+0
-0
Minimal_Default_BuiltData.uasset
...obileStarterContent/Maps/Minimal_Default_BuiltData.uasset
+0
-0
MasterTestProject.Build.cs
Source/MasterTestProject/MasterTestProject.Build.cs
+8
-9
No files found.
Content/MobileStarterContent/Maps/Minimal_Default.umap
View file @
f105761f
No preview for this file type
Content/MobileStarterContent/Maps/Minimal_Default_BuiltData.uasset
View file @
f105761f
No preview for this file type
Source/MasterTestProject/MasterTestProject.Build.cs
View file @
f105761f
...
...
@@ -25,7 +25,7 @@ public class MasterTestProject : ModuleRules
PrivateDependencyModuleNames
.
AddRange
(
new
string
[]
{
});
LoadAssimp
2
(
Target
);
LoadAssimp
(
Target
);
// Uncomment if you are using Slate UI
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
...
...
@@ -44,22 +44,21 @@ public class MasterTestProject : ModuleRules
{
isLibrarySupported
=
true
;
// string PlatformString = (Target.Platform == UnrealTargetPlatform.Win64) ? "x64" : "x86";
string
LibrariesPath
=
Path
.
Combine
(
ThirdPartyPath
,
"assimp"
,
"
lib
"
,
"Debug"
);
string
dllPath
=
Path
.
Combine
(
ThirdPartyPath
,
"assimp"
,
"bin"
,
"Debug"
);
// string PlatformString = (Target.Platform == UnrealTargetPlatform.Win64) ? "x64" : "x86";
string
LibrariesPath
=
Path
.
Combine
(
ThirdPartyPath
,
"assimp"
,
"
bin64"
,
"code
"
,
"Debug"
);
//
string dllPath = Path.Combine(ThirdPartyPath, "assimp", "bin", "Debug");
//test your path with:
//using System; Console.WriteLine("");
Console
.
WriteLine
(
".. Target {0}"
,
Target
.
Platform
);
Console
.
WriteLine
(
"... LibrariesPath -> "
+
LibrariesPath
);
Console
.
WriteLine
(
"... DLLPath -> "
+
dllPath
);
//
Console.WriteLine("... DLLPath -> " + dllPath);
PublicLibraryPaths
.
Add
(
LibrariesPath
);
PublicLibraryPaths
.
Add
(
dllPath
);
//
PublicLibraryPaths.Add(dllPath);
PublicAdditionalLibraries
.
Add
(
Path
.
Combine
(
LibrariesPath
,
"assimp-vc140-mt.lib"
));
// + PlatformString + ".lib"));
PublicAdditionalLibraries
.
Add
(
Path
.
Combine
(
LibrariesPath
,
"zlibstaticd.lib"
));
PublicDelayLoadDLLs
.
Add
(
Path
.
Combine
(
dllPath
,
"assimp-vc140-mt.dll"
));
PublicDelayLoadDLLs
.
Add
(
Path
.
Combine
(
dllPath
,
"assimp.ilk"
));
//sPublicAdditionalLibraries.Add(Path.Combine(LibrariesPath, "zlibstaticd.lib"));
// PublicDelayLoadDLLs.Add(Path.Combine(dllPath, "assimp-vc140-mt.dll"));
}
if
(
isLibrarySupported
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment