diff options
author | Tim E. Real <termtech@rogers.com> | 2010-10-24 08:21:08 +0000 |
---|---|---|
committer | Tim E. Real <termtech@rogers.com> | 2010-10-24 08:21:08 +0000 |
commit | 30a64aa8da492ada95aff171b745e7b50145f643 (patch) | |
tree | 867c8dd3053928f195535244a685825dba1ade93 /muse2/synti/fluid | |
parent | 5ffe4bc73bd86027b2ce78ef804609df6dad03e9 (diff) |
See ChangeLog
Diffstat (limited to 'muse2/synti/fluid')
-rw-r--r-- | muse2/synti/fluid/CMakeLists.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/muse2/synti/fluid/CMakeLists.txt b/muse2/synti/fluid/CMakeLists.txt index 82bc6e5f..4d7506d2 100644 --- a/muse2/synti/fluid/CMakeLists.txt +++ b/muse2/synti/fluid/CMakeLists.txt @@ -30,7 +30,7 @@ add_library ( fluid SHARED ${fluid_uis} ) -target_link_libraries( fluid synti ) +# target_link_libraries( fluid synti ) # - tell cmake to name target fluid.so instead of # libfluid.so @@ -39,12 +39,16 @@ target_link_libraries( fluid synti ) set_target_properties ( fluid PROPERTIES PREFIX "" COMPILE_FLAGS "-include ${PROJECT_BINARY_DIR}/all-pic.h" - LINK_FLAGS "${FLUID_LIBRARIES}" + LINK_FLAGS "-l${FLUIDSYN_LIBRARIES}" ) target_link_libraries(fluid synti ${QT_LIBRARIES} - ${FLUID_LIBRARIES} + # Can't do this. FLUIDSYN_LIBRARIES = fluidsynth, which is the name of our fluidsynth.so shared synthesizer library. + # This caused ../fluidsynth/fluidsynth.so to appear in the link line. + # ${FLUIDSYN_LIBRARIES} + # Try giving full path: Nope, path is empty! + # ${FLUIDSYN_LIBRARY_DIRS}/${FLUIDSYN_LIBRARIES} ) install_targets ( /${CMAKE_INSTALL_LIBDIR}/${MusE_INSTALL_NAME}/synthi/ fluid ) |