Howdy,

On 8/1/20 12:32 PM, Alan Ezust wrote:
> But I am not sure exactly what to do to the cmakelists.txt of Clementine
> in order to "bring in" this framework into Clementine.
> 
> I know I need to put a find_package(KF5GlobalAccel) somewhere in it, but
> what else do I need to do to start using this library ?

That's right, you need to find KF5GlobalAccel first

    find_package(KF5GlobalAccel CONFIG)

and then link your program against KF5::GlobalAccel

    target_link_libraries(target_name KF5::GlobalAccel)

Cheers,
Vlad

Reply via email to