From 183a6a0effdf1332ec445e5d1626b99d550c79a8 Mon Sep 17 00:00:00 2001 From: Kevin Funk Date: Mon, 2 Nov 2015 10:43:06 +0100 Subject: CMake: Create CMake files for WaylandClient Also add unit tests Change-Id: I66de887607f73b318884e4a35f18510b90cf0315 Task-number: QTBUG-47357 Reviewed-by: Jan Arne Petersen Reviewed-by: Giulio Camuffo --- tests/auto/cmake/CMakeLists.txt | 3 +++ tests/auto/cmake/test_waylandclient/CMakeLists.txt | 12 ++++++++++++ tests/auto/cmake/test_waylandclient/main.cpp | 7 +++++++ 3 files changed, 22 insertions(+) create mode 100644 tests/auto/cmake/test_waylandclient/CMakeLists.txt create mode 100644 tests/auto/cmake/test_waylandclient/main.cpp (limited to 'tests/auto') diff --git a/tests/auto/cmake/CMakeLists.txt b/tests/auto/cmake/CMakeLists.txt index a3c4870d1..9041fff95 100644 --- a/tests/auto/cmake/CMakeLists.txt +++ b/tests/auto/cmake/CMakeLists.txt @@ -13,3 +13,6 @@ include("${_Qt5CTestMacros}") test_module_includes( Compositor QWaylandBufferRef ) + +# Can't test in `test_module_includes`, WaylandClient has no public headers +expect_pass(test_waylandclient) diff --git a/tests/auto/cmake/test_waylandclient/CMakeLists.txt b/tests/auto/cmake/test_waylandclient/CMakeLists.txt new file mode 100644 index 000000000..3788a4927 --- /dev/null +++ b/tests/auto/cmake/test_waylandclient/CMakeLists.txt @@ -0,0 +1,12 @@ +project(test_plugins) + +cmake_minimum_required(VERSION 2.8) +cmake_policy(SET CMP0056 NEW) + +find_package(Qt5WaylandClient REQUIRED) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Core_EXECUTABLE_COMPILE_FLAGS}") + +include_directories(${Qt5WaylandClient_PRIVATE_INCLUDE_DIRS}) +add_executable(test_waylandclient_exe main.cpp) +target_link_libraries(test_waylandclient_exe Qt5::WaylandClient) diff --git a/tests/auto/cmake/test_waylandclient/main.cpp b/tests/auto/cmake/test_waylandclient/main.cpp new file mode 100644 index 000000000..f0ccdef4b --- /dev/null +++ b/tests/auto/cmake/test_waylandclient/main.cpp @@ -0,0 +1,7 @@ +#include + +int main() +{ + // use symbol + QtWaylandClient::QWaylandCursor cursor(Q_NULLPTR); +} -- cgit v1.2.3