Files
Aleksandr Vodyanov 3759e1163f [DO-981] qt package (!15)
Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech>
Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/15
2025-02-13 12:25:48 +03:00

8 lines
245 B
CMake

cmake_minimum_required(VERSION 3.1)
project(test_package LANGUAGES CXX)
find_package(xkbcommon REQUIRED COMPONENTS libxkbcommon)
add_executable(test_package test_package.cpp)
target_link_libraries(test_package PRIVATE xkbcommon::libxkbcommon)