summaryrefslogtreecommitdiffstats
path: root/config.tests/fbx
diff options
context:
space:
mode:
authorMike Krus <mike.krus@kdab.com>2020-05-08 14:06:53 +0100
committerMike Krus <mike.krus@kdab.com>2020-05-22 08:53:50 +0100
commit22dd30949938083aceda8267c41c920c61c0d388 (patch)
treea49704414a853624006b860d1a92689bc4f5ca88 /config.tests/fbx
parent5596989f92fd36615e203215ef274bff80bb7e31 (diff)
Add support for building with CMake
Change-Id: If6c887c6356a160a5f3fb906d38a341fff0c7b29 Reviewed-by: Mike Krus <mike.krus@kdab.com>
Diffstat (limited to 'config.tests/fbx')
-rw-r--r--config.tests/fbx/CMakeLists.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/config.tests/fbx/CMakeLists.txt b/config.tests/fbx/CMakeLists.txt
new file mode 100644
index 000000000..ae2640b33
--- /dev/null
+++ b/config.tests/fbx/CMakeLists.txt
@@ -0,0 +1,23 @@
+# Generated from fbx.pro.
+
+cmake_minimum_required(VERSION 3.14.0)
+project(config_test_fbx LANGUAGES C CXX)
+
+foreach(p ${QT_CONFIG_COMPILE_TEST_PACKAGES})
+ find_package(${p})
+endforeach()
+
+if(QT_CONFIG_COMPILE_TEST_LIBRARIES)
+ link_libraries(${QT_CONFIG_COMPILE_TEST_LIBRARIES})
+endif()
+if(QT_CONFIG_COMPILE_TEST_LIBRARY_TARGETS)
+ foreach(lib ${QT_CONFIG_COMPILE_TEST_LIBRARY_TARGETS})
+ if(TARGET ${lib})
+ link_libraries(${lib})
+ endif()
+ endforeach()
+endif()
+
+add_executable(${PROJECT_NAME}
+ main.cpp
+)