diff options
| author | Cameron Cawley <ccawley2011@gmail.com> | 2025-10-28 22:34:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-28 23:34:56 +0100 |
| commit | a6b98e11dfd7ca9febed87818525edb6059d2428 (patch) | |
| tree | ce43e262d84a74aa21ccc6aa702100154caf1af6 /test/fuzz | |
| parent | 7b29794c1807fcdeb1b81729a1d7ae1ac93fbd8b (diff) | |
| download | Project-Tick-a6b98e11dfd7ca9febed87818525edb6059d2428.tar.gz Project-Tick-a6b98e11dfd7ca9febed87818525edb6059d2428.zip | |
Rename CMake targets to avoid clashes when used as a subproject (#1970)
Diffstat (limited to 'test/fuzz')
| -rw-r--r-- | test/fuzz/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fuzz/CMakeLists.txt b/test/fuzz/CMakeLists.txt index db54a7e42d..e5a7455dda 100644 --- a/test/fuzz/CMakeLists.txt +++ b/test/fuzz/CMakeLists.txt @@ -30,9 +30,9 @@ foreach(FUZZER ${FUZZERS}) endif() if(NOT DEFINED BUILD_SHARED_LIBS) - target_link_libraries(${FUZZER} zlibstatic) + target_link_libraries(${FUZZER} zlib-ng-static) else() - target_link_libraries(${FUZZER} zlib) + target_link_libraries(${FUZZER} zlib-ng) endif() if(FUZZING_ENGINE_FOUND) |
