summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorGuillermo A. Amaral <gamaral@kdab.com>2017-01-10 16:48:22 -0800
committerSean Harmer <sean.harmer@kdab.com>2017-01-20 13:56:41 +0000
commitd874dd59ca7a11ef834cfbb26b68709973b17a48 (patch)
tree508da25ab1899972c323d23cba8ce07aa1698f0a /config.tests
parentcbc450d3ba15750299657703cc1e313108d3eccf (diff)
Added FBX geometry loader
Tested on Linux, macOS and Windows Change-Id: I4522e2c0ca07d7bbbf6e2918458b08be7e73c7e4 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/fbx/fbx.pro1
-rw-r--r--config.tests/fbx/main.cpp39
2 files changed, 40 insertions, 0 deletions
diff --git a/config.tests/fbx/fbx.pro b/config.tests/fbx/fbx.pro
new file mode 100644
index 000000000..28dcadcbf
--- /dev/null
+++ b/config.tests/fbx/fbx.pro
@@ -0,0 +1 @@
+SOURCES += main.cpp
diff --git a/config.tests/fbx/main.cpp b/config.tests/fbx/main.cpp
new file mode 100644
index 000000000..56304e7cb
--- /dev/null
+++ b/config.tests/fbx/main.cpp
@@ -0,0 +1,39 @@
+/****************************************************************************
+**
+** Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB).
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the Qt3D module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:GPL-EXCEPT$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <fbxsdk.h>
+
+int main(int, char **)
+{
+ FbxManager *manager = FbxManager::Create();
+ FbxScene::Create(manager, "scene");
+ manager->Destroy();
+
+ return 0;
+}
+