aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorFlamefire <git@grundis.de>2018-12-15 13:12:35 +0100
committerFlamefire <git@grundis.de>2018-12-15 16:40:26 +0100
commitc998feb631ae9b51d5cf92ce43f685fa63811ef7 (patch)
treef61a628c34e79a4e883f6fd1853ae4795836fd33 /examples
parent977dfbe8eb96df5b5caf8d47e5692bcd8f88a865 (diff)
downloadlibADLMIDI-c998feb631ae9b51d5cf92ce43f685fa63811ef7.tar.gz
libADLMIDI-c998feb631ae9b51d5cf92ce43f685fa63811ef7.tar.bz2
libADLMIDI-c998feb631ae9b51d5cf92ce43f685fa63811ef7.zip
Remove explicit link to stdc++
Diffstat (limited to 'examples')
-rw-r--r--examples/sdl2_audio/CMakeLists.txt2
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)