CMakeLists.txt 304 B

1234567891011
  1. set(CMAKE_INCLUDE_CURRENT_DIR ON)
  2. set(CMAKE_AUTOUIC ON)
  3. add_executable(HotkeyTest
  4. main.cpp
  5. hottestwidget.cpp
  6. hottestwidget.ui)
  7. find_package(Qt${QT_DEFAULT_MAJOR_VERSION} COMPONENTS Widgets REQUIRED)
  8. target_link_libraries(HotkeyTest Qt${QT_DEFAULT_MAJOR_VERSION}::Widgets QHotkey::QHotkey)