summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh F <josh@vector35.com>2022-05-04 17:32:09 -0400
committerJosh F <josh@vector35.com>2022-05-04 17:32:09 -0400
commitf74e3f75e28d435f0b426e7e54b8a31cafda1a12 (patch)
tree0b4e14a8848bfce234fdc41835e7fa41d22c0502
parentdf0d85ebe34e2e1f02537e44b8259f9cda3c8147 (diff)
Remove remaining traces of qt5
-rw-r--r--examples/triage/CMakeLists.txt6
-rw-r--r--examples/uinotification/CMakeLists.txt6
-rw-r--r--scripts/test_build_extern.py2
3 files changed, 0 insertions, 14 deletions
diff --git a/examples/triage/CMakeLists.txt b/examples/triage/CMakeLists.txt
index 7193c3ef..60b60375 100644
--- a/examples/triage/CMakeLists.txt
+++ b/examples/triage/CMakeLists.txt
@@ -1,13 +1,7 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
-option(QT6 "Target Qt 6" OFF)
-
project(triage CXX C)
-if(NOT QT6)
- set(CMAKE_OSX_ARCHITECTURES x86_64)
-endif()
-
file(GLOB SOURCES
*.cpp
*.h)
diff --git a/examples/uinotification/CMakeLists.txt b/examples/uinotification/CMakeLists.txt
index 47a1659b..e99a95b8 100644
--- a/examples/uinotification/CMakeLists.txt
+++ b/examples/uinotification/CMakeLists.txt
@@ -1,13 +1,7 @@
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
-option(QT6 "Target Qt 6" OFF)
-
project(uinotification CXX C)
-if(NOT QT6)
- set(CMAKE_OSX_ARCHITECTURES x86_64)
-endif()
-
file(GLOB SOURCES
*.cpp
*.h)
diff --git a/scripts/test_build_extern.py b/scripts/test_build_extern.py
index 8a9504c9..904dce00 100644
--- a/scripts/test_build_extern.py
+++ b/scripts/test_build_extern.py
@@ -46,8 +46,6 @@ else:
if args.headless:
configure_args.extend(['-DHEADLESS=1'])
-else:
- configure_args.extend(['-DQT6=1', ])
# Copy api out of the source tree and build it externally
with tempfile.TemporaryDirectory() as tempdir: