aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2024-02-08 15:12:29 +0800
committercrupest <crupest@outlook.com>2024-02-08 15:12:29 +0800
commitf3af6c7e5b46f4209a4981e5d7be217368f40b15 (patch)
treee932747ad91a718abb667a6170b21f1521a04d1e /src/common
parentbfe23251a54b036abef9241ba0994c9e51db25b2 (diff)
downloadcru-f3af6c7e5b46f4209a4981e5d7be217368f40b15.tar.gz
cru-f3af6c7e5b46f4209a4981e5d7be217368f40b15.tar.bz2
cru-f3af6c7e5b46f4209a4981e5d7be217368f40b15.zip
Get rid of GSL.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/CMakeLists.txt2
-rw-r--r--src/common/String.cpp1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 45688deb..2414831b 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -73,4 +73,4 @@ else()
target_compile_definitions(CruBase PUBLIC CRU_PLATFORM_LINUX)
endif()
-target_link_libraries(CruBase PUBLIC GSL double-conversion)
+target_link_libraries(CruBase PUBLIC double-conversion)
diff --git a/src/common/String.cpp b/src/common/String.cpp
index cac807b0..0d1c38b8 100644
--- a/src/common/String.cpp
+++ b/src/common/String.cpp
@@ -6,7 +6,6 @@
#include <double-conversion/double-conversion.h>
#include <double-conversion/string-to-double.h>
-#include <gsl/gsl>
#include <algorithm>
#include <cmath>