mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-13 00:04:10 +00:00
cmake: setup linker directories before creating target
This commit is contained in:
parent
39f574942e
commit
908aaeb5cc
2 changed files with 12 additions and 13 deletions
|
@ -551,15 +551,25 @@ endif()
|
||||||
set(TEST_SOUNDFONT "${CMAKE_SOURCE_DIR}/sf2/VintageDreamsWaves-v2.sf2")
|
set(TEST_SOUNDFONT "${CMAKE_SOURCE_DIR}/sf2/VintageDreamsWaves-v2.sf2")
|
||||||
set(TEST_SOUNDFONT_SF3 "${CMAKE_SOURCE_DIR}/sf2/VintageDreamsWaves-v2.sf3")
|
set(TEST_SOUNDFONT_SF3 "${CMAKE_SOURCE_DIR}/sf2/VintageDreamsWaves-v2.sf3")
|
||||||
|
|
||||||
add_subdirectory ( test )
|
|
||||||
|
|
||||||
# General configuration file
|
# General configuration file
|
||||||
configure_file ( ${CMAKE_SOURCE_DIR}/src/config.cmake
|
configure_file ( ${CMAKE_SOURCE_DIR}/src/config.cmake
|
||||||
${CMAKE_BINARY_DIR}/config.h )
|
${CMAKE_BINARY_DIR}/config.h )
|
||||||
|
|
||||||
|
# Setup linker directories NOW, as the command will apply only to targets created after it has been called.
|
||||||
|
link_directories (
|
||||||
|
${GLIB_LIBRARY_DIRS}
|
||||||
|
${LASH_LIBRARY_DIRS}
|
||||||
|
${JACK_LIBRARY_DIRS}
|
||||||
|
${ALSA_LIBRARY_DIRS}
|
||||||
|
${PULSE_LIBRARY_DIRS}
|
||||||
|
${PORTAUDIO_LIBRARY_DIRS}
|
||||||
|
${LIBSNDFILE_LIBRARY_DIRS}
|
||||||
|
${DBUS_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
# Process subdirectories
|
# Process subdirectories
|
||||||
add_subdirectory ( src )
|
add_subdirectory ( src )
|
||||||
|
add_subdirectory ( test )
|
||||||
add_subdirectory ( doc )
|
add_subdirectory ( doc )
|
||||||
|
|
||||||
# pkg-config support
|
# pkg-config support
|
||||||
|
|
|
@ -226,17 +226,6 @@ generate_product_version(
|
||||||
)
|
)
|
||||||
endif ( WIN32 AND NOT MINGW )
|
endif ( WIN32 AND NOT MINGW )
|
||||||
|
|
||||||
link_directories (
|
|
||||||
${GLIB_LIBRARY_DIRS}
|
|
||||||
${LASH_LIBRARY_DIRS}
|
|
||||||
${JACK_LIBRARY_DIRS}
|
|
||||||
${ALSA_LIBRARY_DIRS}
|
|
||||||
${PULSE_LIBRARY_DIRS}
|
|
||||||
${PORTAUDIO_LIBRARY_DIRS}
|
|
||||||
${LIBSNDFILE_LIBRARY_DIRS}
|
|
||||||
${DBUS_LIBRARY_DIRS}
|
|
||||||
)
|
|
||||||
|
|
||||||
add_library ( libfluidsynth-OBJ OBJECT
|
add_library ( libfluidsynth-OBJ OBJECT
|
||||||
${config_SOURCES}
|
${config_SOURCES}
|
||||||
${fluid_alsa_SOURCES}
|
${fluid_alsa_SOURCES}
|
||||||
|
|
Loading…
Reference in a new issue