mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-16 09:34:36 +00:00
Merge pull request #557 from alemuntoni/master
Fix U3D export for Mac and Linux
This commit is contained in:
commit
8f10e88eed
BIN
src/distrib/plugins/U3D_LINUX/bin/IDTFConverter
Executable file
BIN
src/distrib/plugins/U3D_LINUX/bin/IDTFConverter
Executable file
Binary file not shown.
BIN
src/distrib/plugins/U3D_LINUX/bin/IDTFGen
Executable file
BIN
src/distrib/plugins/U3D_LINUX/bin/IDTFGen
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/distrib/plugins/U3D_OSX/bin/HelloU3DWorld
Executable file
BIN
src/distrib/plugins/U3D_OSX/bin/HelloU3DWorld
Executable file
Binary file not shown.
BIN
src/distrib/plugins/U3D_OSX/bin/IDTFConverter
Executable file
BIN
src/distrib/plugins/U3D_OSX/bin/IDTFConverter
Executable file
Binary file not shown.
BIN
src/distrib/plugins/U3D_OSX/bin/IDTFGen
Executable file
BIN
src/distrib/plugins/U3D_OSX/bin/IDTFGen
Executable file
Binary file not shown.
Binary file not shown.
@ -106,11 +106,13 @@ bool U3DIOPlugin::save(const QString &formatName, const QString &fileName, MeshM
|
||||
converterPath += "/IDTFConverter.exe";
|
||||
converterCommandLine = converterPath;
|
||||
#elif defined(Q_OS_MAC)
|
||||
converterPath.replace(QString(" "),QString("\\ "));
|
||||
converterCommandLine = "\""+converterPath +"/IDTFConverter.sh"+ "\" \"" + converterPath+"\"";
|
||||
converterPath = converterPath +"/IDTFConverter.sh";
|
||||
//converterPath.replace(QString(" "),QString("\\ "));
|
||||
//converterCommandLine = "\""+converterPath +"/IDTFConverter.sh"+ "\" \"" + converterPath+"\"";
|
||||
//converterPath = converterPath +"/IDTFConverter.sh";
|
||||
converterPath += "/bin/IDTFConverter";
|
||||
converterCommandLine = converterPath;
|
||||
#elif defined(Q_OS_LINUX)
|
||||
converterPath = "/usr/bin/IDTFConverter";
|
||||
converterPath += "/bin/IDTFConverter";
|
||||
converterCommandLine = converterPath;
|
||||
#endif
|
||||
if (settings.contains("U3D/converter"))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user