From 69b2942566cc8c17f467cf4d62746bdf1199da2c Mon Sep 17 00:00:00 2001 From: John Maguire Date: Tue, 17 May 2011 11:53:17 +0000 Subject: [PATCH] Add dependency so spotify blob is built before clementine. --- src/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index db3f05c65..332226df0 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1118,6 +1118,11 @@ target_link_libraries(clementine clementine_lib ) +# macdeploy.py relies on the blob being built first. +if(HAVE_SPOTIFY_BLOB) + add_dependencies(clementine clementine-spotifyblob) +endif(HAVE_SPOTIFY_BLOB) + set_target_properties(clementine PROPERTIES MACOSX_BUNDLE_INFO_PLIST "../dist/Info.plist" )