From 2af438a6ce31f225f0d1c0b1b43df848a858fe18 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Fri, 22 Jun 2012 10:04:05 +0200 Subject: Give the CMake unit tests more meaningful names. Change-Id: I0a54d32ec62ff6daf7672d0aabdeb038f4c7c78f Reviewed-by: David Faure --- .../auto/cmake/test_use_modules_function/CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/auto/cmake/test_use_modules_function/CMakeLists.txt (limited to 'tests/auto/cmake/test_use_modules_function/CMakeLists.txt') diff --git a/tests/auto/cmake/test_use_modules_function/CMakeLists.txt b/tests/auto/cmake/test_use_modules_function/CMakeLists.txt new file mode 100644 index 0000000000..4ce01938cb --- /dev/null +++ b/tests/auto/cmake/test_use_modules_function/CMakeLists.txt @@ -0,0 +1,16 @@ + +cmake_minimum_required(VERSION 2.8) + +project(test_use_modules_function) + +set(CMAKE_AUTOMOC ON) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) + +add_executable(two two.cpp) +add_executable(three three.cpp) + +find_package(Qt5Core) + +qt5_use_modules(two Test) +qt5_use_modules(three Widgets Test) -- cgit v1.2.3