You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
505 B
17 lines
505 B
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(UicOnFileChange)
|
|
include("@CMAKE_CURRENT_LIST_DIR@/../AutogenGuiTest.cmake")
|
|
|
|
# Enable CMAKE_AUTOUIC for all targets
|
|
set(CMAKE_AUTOUIC ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
add_executable(UicOnFileChange main.cpp mainwindow.ui mainwindow.h
|
|
)
|
|
target_include_directories(UicOnFileChange PRIVATE
|
|
"${CMAKE_CURRENT_SOURCE_DIR}"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/UicOnFileChange_autogen/include"
|
|
)
|
|
target_link_libraries(UicOnFileChange ${QT_QTCORE_TARGET} ${QT_LIBRARIES})
|