summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/flac/CMakeLists.txt1
-rw-r--r--src/metaflac/CMakeLists.txt2
-rw-r--r--src/share/utf8/CMakeLists.txt2
3 files changed, 2 insertions, 3 deletions
diff --git a/src/flac/CMakeLists.txt b/src/flac/CMakeLists.txt
index 6275aca2..240209d6 100644
--- a/src/flac/CMakeLists.txt
+++ b/src/flac/CMakeLists.txt
@@ -13,7 +13,6 @@ add_executable(flac
target_link_libraries(flac
FLAC-static
getopt
- grabbag
replaygain_synthesis
utf8)
diff --git a/src/metaflac/CMakeLists.txt b/src/metaflac/CMakeLists.txt
index 8f99d646..1895e9e0 100644
--- a/src/metaflac/CMakeLists.txt
+++ b/src/metaflac/CMakeLists.txt
@@ -9,7 +9,7 @@ add_executable(metaflac
options.c
usage.c
utils.c)
-target_link_libraries(metaflac FLAC-static grabbag getopt utf8)
+target_link_libraries(metaflac FLAC-static getopt utf8)
install(TARGETS metaflac EXPORT targets
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}")
diff --git a/src/share/utf8/CMakeLists.txt b/src/share/utf8/CMakeLists.txt
index e0e32ac1..2e2b3c62 100644
--- a/src/share/utf8/CMakeLists.txt
+++ b/src/share/utf8/CMakeLists.txt
@@ -6,4 +6,4 @@ add_library(utf8 STATIC
iconvert.c
utf8.c)
-target_link_libraries(utf8 PUBLIC $<$<BOOL:${HAVE_ICONV_LIB}>:iconv>)
+target_link_libraries(utf8 PUBLIC grabbag $<$<BOOL:${HAVE_ICONV_LIB}>:iconv>)