qxtglobalshortcut/example/CMakeLists.txt

12 lines
319 B
CMake

cmake_minimum_required(VERSION 2.8.8)
project(qxtglobalshortcut_test)
find_package(qxtglobalshortcut REQUIRED)
find_package(Qt6 REQUIRED COMPONENTS Widgets)
set(bin qxtglobalshortcut_test)
add_executable(${bin} src/main.cpp)
target_link_libraries(${bin} qxtglobalshortcut)
target_link_libraries(${bin} Qt6::Widgets)