diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-08 00:16:44 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-08 00:36:23 +0200 |
| commit | 706d299af4fc8ab0cc12c7a36381f5faba54684e (patch) | |
| tree | 524cb1115ae610ed76488b80452196abfbd20b79 | |
| parent | d57cd4ad822579257100a09a45b9c94c1919a705 (diff) | |
pad/CMakeLists.txt: add missing call to target_link_libraries()
| -rw-r--r-- | src/pad/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pad/CMakeLists.txt b/src/pad/CMakeLists.txt index e4aee5b..5e8271b 100644 --- a/src/pad/CMakeLists.txt +++ b/src/pad/CMakeLists.txt @@ -13,3 +13,4 @@ endif() add_library(pad ${src}) target_include_directories(pad PUBLIC ${inc} PRIVATE ${privinc}) +target_link_libraries(pad PUBLIC ${deps}) |
