diff options
author | 2017-01-17 20:04:12 -0800 | |
---|---|---|
committer | 2017-01-17 20:04:12 -0800 | |
commit | 71f39b6c06e7106c0946c4b0ccedc8b8eae5a50e (patch) | |
tree | f80a63efc0349c99051a1463ea0b0a4bbe8a6b2c /doc/api/cplusplus/examples/CMakeLists.txt | |
parent | 6b7306143ca028073f02221fd2dab1946b3d2415 (diff) | |
download | paludis-71f39b6c06e7106c0946c4b0ccedc8b8eae5a50e.tar.gz paludis-71f39b6c06e7106c0946c4b0ccedc8b8eae5a50e.tar.xz |
build: add missing dependency on generated headers
The examples code depends on libpaludisutils' generated headers. Found
by the jenkins build bot.
Diffstat (limited to 'doc/api/cplusplus/examples/CMakeLists.txt')
-rw-r--r-- | doc/api/cplusplus/examples/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/cplusplus/examples/CMakeLists.txt b/doc/api/cplusplus/examples/CMakeLists.txt index 3acfd2bbb..5e15f2d43 100644 --- a/doc/api/cplusplus/examples/CMakeLists.txt +++ b/doc/api/cplusplus/examples/CMakeLists.txt @@ -13,7 +13,7 @@ paludis_add_library(libpaludisexamples target_link_libraries(libpaludisexamples INTERFACE libpaludisargs) -add_dependencies(libpaludisexamples libpaludisargs_SE) +add_dependencies(libpaludisexamples libpaludisargs_SE libpaludisutil_SE) function(add_example example) add_executable(example_${example} |