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.
11 lines
322 B
11 lines
322 B
2 years ago
|
enable_language(CXX)
|
||
|
|
||
|
find_package(Qt${with_qt_version} REQUIRED COMPONENTS Core Widgets Gui)
|
||
|
|
||
|
set(CMAKE_AUTOMOC ON)
|
||
|
|
||
|
add_library(dummy SHARED empty.cpp)
|
||
|
target_link_libraries(dummy Qt${with_qt_version}::Core
|
||
|
Qt${with_qt_version}::Widgets
|
||
|
Qt${with_qt_version}::Gui)
|