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

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)