summaryrefslogtreecommitdiffstats
path: root/mcop
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-12 17:27:54 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-12 17:27:54 -0600
commitd548013bdb885cac474191d0efdda85685417f08 (patch)
treec0792482daae404ab66cb98c8fd1dfa9d33cd066 /mcop
parentb73042f8dd7e537374bff3754e621f323ab7d109 (diff)
downloadarts-d548013bdb885cac474191d0efdda85685417f08.tar.gz
arts-d548013bdb885cac474191d0efdda85685417f08.zip
Add ESD support to CMake
Diffstat (limited to 'mcop')
-rw-r--r--mcop/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcop/CMakeLists.txt b/mcop/CMakeLists.txt
index fe62f9f..7b4eec1 100644
--- a/mcop/CMakeLists.txt
+++ b/mcop/CMakeLists.txt
@@ -12,11 +12,11 @@
configure_file( arts_export.h.in arts_export.h )
if( NOT EXTENSION_DIR )
- set( EXTENSION_DIR ${CMAKE_INSTALL_PREFIX}/lib )
+ set( EXTENSION_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX} )
endif( NOT EXTENSION_DIR )
if( NOT DTRADER_DIR )
- set( DTRADER_DIR ${CMAKE_INSTALL_PREFIX}/lib/mcop )
+ set( DTRADER_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/mcop )
endif( NOT DTRADER_DIR )
add_definitions(
@@ -66,6 +66,6 @@ set( ${target}_SRCS
tde_add_library( ${target} SHARED
SOURCES ${${target}_SRCS}
VERSION 1.0.0
- LINK ltdlc-static
+ LINK ltdlc-static ${ESOUND_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}
)