diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-12-17 02:00:24 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-12-17 02:00:24 +0300 |
commit | 4d4367fc3c8f0a459aaa78f9251088a352627379 (patch) | |
tree | 70dbbd732878c1451fd34a734f2e115fc4228bb8 /examples | |
parent | 657c48c65cb312e6513a21696bec589cad03aa01 (diff) | |
download | libADLMIDI-4d4367fc3c8f0a459aaa78f9251088a352627379.tar.gz libADLMIDI-4d4367fc3c8f0a459aaa78f9251088a352627379.tar.bz2 libADLMIDI-4d4367fc3c8f0a459aaa78f9251088a352627379.zip |
Fixed C++98 and C90 warnings, also CLang rpath warning
Diffstat (limited to 'examples')
-rw-r--r-- | examples/sdl2_audio/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sdl2_audio/CMakeLists.txt b/examples/sdl2_audio/CMakeLists.txt index 4e0a76b..e1f797a 100644 --- a/examples/sdl2_audio/CMakeLists.txt +++ b/examples/sdl2_audio/CMakeLists.txt @@ -13,7 +13,7 @@ if(NOT WIN32) endif() if(TARGET ADLMIDI_shared) - set_target_properties(adlmidi_sdl2_demo PROPERTIES COMPILE_FLAGS "-Wl,-rpath='$$ORIGIN/../lib'") + set_target_properties(adlmidi_sdl2_demo PROPERTIES INSTALL_RPATH "$ORIGIN/../lib") endif() install(TARGETS adlmidi_sdl2_demo |