summaryrefslogtreecommitdiffstats
path: root/tests/manual/windowtransparency
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/windowtransparency')
-rw-r--r--tests/manual/windowtransparency/CMakeLists.txt6
-rw-r--r--tests/manual/windowtransparency/windowtransparency.cpp3
2 files changed, 6 insertions, 3 deletions
diff --git a/tests/manual/windowtransparency/CMakeLists.txt b/tests/manual/windowtransparency/CMakeLists.txt
index c35f0bebd9..04c21228fb 100644
--- a/tests/manual/windowtransparency/CMakeLists.txt
+++ b/tests/manual/windowtransparency/CMakeLists.txt
@@ -1,4 +1,5 @@
-# Generated from windowtransparency.pro.
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: BSD-3-Clause
#####################################################################
## windowtransparency Binary:
@@ -7,7 +8,8 @@
qt_internal_add_manual_test(windowtransparency
SOURCES
windowtransparency.cpp
- PUBLIC_LIBRARIES
+ LIBRARIES
Qt::Gui
Qt::Widgets
+ Qt::OpenGL
)
diff --git a/tests/manual/windowtransparency/windowtransparency.cpp b/tests/manual/windowtransparency/windowtransparency.cpp
index 20a56cc801..10ee6960c3 100644
--- a/tests/manual/windowtransparency/windowtransparency.cpp
+++ b/tests/manual/windowtransparency/windowtransparency.cpp
@@ -1,8 +1,9 @@
// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtGui>
#include <QtWidgets>
+#include <QtOpenGL/QOpenGLShaderProgram>
class GLWindow : public QWindow
{