2

Is there are any mechanism in Build2 like CMake's find_package?

How to can i include a library that exists only on my system and not in package manager packages?

Kevin
  • 16,549
  • 8
  • 60
  • 74
Blaze
  • 813
  • 2
  • 8
  • 13

1 Answers1

2

To use foo as dependency in your bar project, you need to add a line:

cxx.libs += -lfoo

in ~/bar/bar/buildfile

Blaze
  • 813
  • 2
  • 8
  • 13