QMSETUPΒΆ

CMake Modules and Basic Libraries for C/C++ projects.

Finding the package is all the API asks for. Its commands exist from there on.

find_package(qmsetup REQUIRED)

A module is the other half, and none of them is brought in by that alone. Name the ones wanted as components:

find_package(qmsetup REQUIRED COMPONENTS Deploy)

or import them afterwards, which comes to the same thing:

qm_import(Deploy)

COMPONENTS All takes every module there is.