File: targets-deps.patch

package info (click to toggle)
nthash 2.3.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 520 kB
  • sloc: cpp: 2,851; sh: 36; makefile: 11
file content (17 lines) | stat: -rw-r--r-- 682 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: declare dependencies to libnthash.a.
 This change fixes failures to run parallel builds.
 Upstream moved away from cmake, so there is nothing to forward.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1105464
Forwarded: not-needed
Last-Update: 2025-11-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- nthash.orig/CMakeLists.txt
+++ nthash/CMakeLists.txt
@@ -33,3 +33,5 @@
 target_link_libraries(nthash_tests btllib)
 enable_testing()
 add_test(NAME nthash_tests COMMAND $<TARGET_FILE:nthash_tests>)
+add_dependencies(nthash nthash_lib)
+add_dependencies(nthash_tests nthash_lib)