|
From: Tapio V. <aa...@us...> - 2009-12-11 12:44:08
|
Module: performous
Branch: dance
Commit: cf5cfe82618c8ecaf5193ead411fb3c57acb4c99
Author: Xaldyz <xa...@us...>
Date: Tue Dec 1 22:31:03 2009 +0100
libs/libda/plugins/CMakeLists.txt: fixed dll linkage problems
---
libs/libda/plugins/CMakeLists.txt | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/libs/libda/plugins/CMakeLists.txt b/libs/libda/plugins/CMakeLists.txt
index 9dbd2f6..0686be3 100644
--- a/libs/libda/plugins/CMakeLists.txt
+++ b/libs/libda/plugins/CMakeLists.txt
@@ -166,6 +166,9 @@ if(PLUGIN_TESTING)
install(TARGETS da_audio_dev_tone DESTINATION ${LibDA_PLUGIN_DIR})
if(APPLE OR WIN32)
target_link_libraries(da_audio_dev_tone da)
+ if(WIN32)
+ target_link_libraries(da_audio_dev_tone plugin++)
+ endif(WIN32)
endif(APPLE OR WIN32)
endif(PLUGIN_TESTING)
|