C4D stuff
parent
a90b5bac9f
commit
d16f70a480
|
@ -1,4 +1,5 @@
|
|||
AssimpIncludeExporters = false
|
||||
AssimpEnableNoneFreeC4DImporter = false
|
||||
|
||||
HeaderPath = "%{prj.location}/include/assimp"
|
||||
CodePath = "%{prj.location}/code"
|
||||
|
@ -12,6 +13,7 @@ AssimpExporterSourceFiles = {}
|
|||
AssimpExporterSourceFilesIndex = 0
|
||||
|
||||
|
||||
|
||||
function AddSourceFilesCode(sourceFiles)
|
||||
for _, file in ipairs(sourceFiles) do
|
||||
AssimpSourceFiles[AssimpSourceFilesIndex] = file
|
||||
|
@ -208,6 +210,13 @@ AssimpSTEPParserSourceFiles = {
|
|||
AddSourceFilesCode(AssimpSTEPParserSourceFiles)
|
||||
|
||||
-- C4D Importer not supported
|
||||
if(AssimpEnableNoneFreeC4DImporter) then
|
||||
C4DImporter = {
|
||||
"AssetLib/C4D/C4DImporter.cpp",
|
||||
"AssetLib/C4D/C4DImporter.h"
|
||||
}
|
||||
AddSourceFilesCode(C4DImporter)
|
||||
end
|
||||
|
||||
|
||||
AMFImporter = {
|
||||
|
@ -414,6 +423,7 @@ OFFImporter = {
|
|||
"%{CodePath}/AssetLib/OFF/OFFLoader.cpp",
|
||||
"%{CodePath}/AssetLib/OFF/OFFLoader.h"
|
||||
}
|
||||
AddAssimpImporter(OFFImporter)
|
||||
|
||||
OBJImporter = {
|
||||
"%{CodePath}/AssetLib/Obj/ObjFileData.h",
|
||||
|
|
|
@ -77,7 +77,7 @@ OppenddlparserSourceFiles = {
|
|||
"%{ContribPath}/openddlparser/include/openddlparser/DDLNode.h",
|
||||
"%{ContribPath}/openddlparser/include/openddlparser/Value.h"
|
||||
}
|
||||
AddSourceFilesContrib(OppenddlparserSourceFiles)
|
||||
--AddSourceFilesContrib(OppenddlparserSourceFiles)
|
||||
|
||||
|
||||
Open3dgcSourceFiles = {
|
||||
|
|
Loading…
Reference in New Issue