summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_interface/widget_test/CMakeLists.txt
blob: 229b1bf9621efcc853632ca81af0540c7778b9f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cmake_minimum_required(VERSION 3.16)

project(test_interface_try_compile)

find_package(Qt6Widgets)

set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)

add_executable(test_interface_try_compile_exe main.cpp)
target_link_libraries(test_interface_try_compile_exe Qt::Widgets)