diff options
author | Flamefire <git@grundis.de> | 2018-12-15 13:12:35 +0100 |
---|---|---|
committer | Flamefire <git@grundis.de> | 2018-12-15 16:40:26 +0100 |
commit | c998feb631ae9b51d5cf92ce43f685fa63811ef7 (patch) | |
tree | f61a628c34e79a4e883f6fd1853ae4795836fd33 /examples/sdl2_audio | |
parent | 977dfbe8eb96df5b5caf8d47e5692bcd8f88a865 (diff) | |
download | libADLMIDI-c998feb631ae9b51d5cf92ce43f685fa63811ef7.tar.gz libADLMIDI-c998feb631ae9b51d5cf92ce43f685fa63811ef7.tar.bz2 libADLMIDI-c998feb631ae9b51d5cf92ce43f685fa63811ef7.zip |
Remove explicit link to stdc++
Diffstat (limited to 'examples/sdl2_audio')
-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 47924d0..4e0a76b 100644 --- a/examples/sdl2_audio/CMakeLists.txt +++ b/examples/sdl2_audio/CMakeLists.txt @@ -9,7 +9,7 @@ if(NOT MSVC) target_link_libraries(adlmidi_sdl2_demo PRIVATE pthread) endif() if(NOT WIN32) - target_link_libraries(adlmidi_sdl2_demo PRIVATE dl m stdc++) + target_link_libraries(adlmidi_sdl2_demo PRIVATE dl m) endif() if(TARGET ADLMIDI_shared) |