// Headers are available because we added the pls target #include <pls/library.h> int main() { // All interfaces are scoped in the pls namespace... // ...explicitly name it... pls::hello(); // ...or use the namespace... using namespace pls; hello(); }