diff options
author | Vitaly Novichkov <Wohlstand@users.noreply.github.com> | 2018-04-13 12:01:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-13 12:01:42 +0300 |
commit | 9e12c2b36589a9d1bf8d0b580cf7321e482a58cf (patch) | |
tree | e90e4ca2003572ac4880333bf08f9e78daaf40c1 | |
parent | 5c0cd9d1902d3d174ac7edd67a6c201b522cd47e (diff) | |
parent | c929a83ac7dcb9e0764a39b2cfad9362ca29b3b0 (diff) | |
download | libADLMIDI-9e12c2b36589a9d1bf8d0b580cf7321e482a58cf.tar.gz libADLMIDI-9e12c2b36589a9d1bf8d0b580cf7321e482a58cf.tar.bz2 libADLMIDI-9e12c2b36589a9d1bf8d0b580cf7321e482a58cf.zip |
Merge pull request #60 from jpcima/cmake-include
propagate the include directory of ADLMIDI
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cff7665..0a8a201 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -242,7 +242,7 @@ endif() if(libADLMIDI_STATIC) add_library(ADLMIDI_static STATIC ${libADLMIDI_SOURCES}) set_target_properties(ADLMIDI_static PROPERTIES OUTPUT_NAME ADLMIDI) - target_include_directories(ADLMIDI_static PUBLIC ${SDLMixerX_SOURCE_DIR}/include) + target_include_directories(ADLMIDI_static PUBLIC ${libADLMIDI_SOURCE_DIR}/include) set_legacy_standard(ADLMIDI_static) list(APPEND libADLMIDI_INSTALLS ADLMIDI_static) if(WITH_EMBEDDED_BANKS AND WITH_GENADLDATA) @@ -253,7 +253,7 @@ endif() if(libADLMIDI_SHARED) add_library(ADLMIDI_shared SHARED ${libADLMIDI_SOURCES}) set_target_properties(ADLMIDI_shared PROPERTIES OUTPUT_NAME ADLMIDI) - target_include_directories(ADLMIDI_shared PUBLIC ${SDLMixerX_SOURCE_DIR}/include) + target_include_directories(ADLMIDI_shared PUBLIC ${libADLMIDI_SOURCE_DIR}/include) set_legacy_standard(ADLMIDI_shared) list(APPEND libADLMIDI_INSTALLS ADLMIDI_shared) if(WITH_EMBEDDED_BANKS AND WITH_GENADLDATA) |