From ffc0b1191107ab251918cc82950df65f7ab6e2fe Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 Date: Fri, 19 Apr 2019 21:10:38 +0200 Subject: [PATCH] Added stdc++ to fix compiling issues --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 17ea9a0..5890e05 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,4 +20,4 @@ set(OTHER_FILES add_executable(databasetree ${HEADERS} ${SOURCES} ${OTHER_FILES}) -target_link_libraries(databasetree Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Sql) +target_link_libraries(databasetree stdc++ Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Sql)