From b852e68b060ba155370a3b6310119a3f2f7a5465 Mon Sep 17 00:00:00 2001 From: LaGrunge Date: Mon, 14 Oct 2019 16:04:02 +0300 Subject: [PATCH] more unused clean --- CMakeLists.txt | 12 ----------- cmake/GeoCoreHelpers.cmake | 10 --------- platform/platform.hpp | 29 -------------------------- platform/platform_tests/CMakeLists.txt | 12 ----------- 4 files changed, 63 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2a73a6..6549e2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,14 +34,6 @@ if(CODE_COVERAGE AND CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") endif() endif() -if (CMAKE_SYSTEM_NAME MATCHES "Linux") - set(LINUX_DETECTED TRUE) -endif() - -geocore_set_platform_var(PLATFORM_MAC "macx-.*" ${APPLE}) -geocore_set_platform_var(PLATFORM_LINUX "linux-.*" ${LINUX_DETECTED}) - - # Set build type: if (NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release") @@ -109,10 +101,6 @@ find_package(Threads) find_package(Boost ${BOOST_VERSION} EXACT COMPONENTS system filesystem serialization iostreams program_options REQUIRED) set(Boost_USE_MULTITHREADED ON) -if (PLATFORM_MAC) - set(Boost_USE_STATIC_LIBS ON) - set(Boost_USE_STATIC_RUNTIME ON) -endif() include_directories(${CMAKE_HOME_DIRECTORY}) include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) diff --git a/cmake/GeoCoreHelpers.cmake b/cmake/GeoCoreHelpers.cmake index c573450..61b4768 100644 --- a/cmake/GeoCoreHelpers.cmake +++ b/cmake/GeoCoreHelpers.cmake @@ -70,16 +70,6 @@ endfunction() function(geocore_link_platform_deps target) if ("${ARGN}" MATCHES "platform") - if (PLATFORM_MAC) - target_link_libraries( - ${target} - "-framework CFNetwork" - "-framework Foundation" - "-framework IOKit" - "-framework SystemConfiguration" - "-framework Security" - ) - endif() endif() endfunction() diff --git a/platform/platform.hpp b/platform/platform.hpp index eaa5c08..11c3fd2 100644 --- a/platform/platform.hpp +++ b/platform/platform.hpp @@ -20,11 +20,6 @@ DECLARE_EXCEPTION(FileAbsentException, RootException); DECLARE_EXCEPTION(FileSystemException, RootException); -namespace platform -{ -class LocalCountryFile; -} - class Platform; Platform & GetPlatform(); @@ -54,13 +49,6 @@ public: FILE_TYPE_DIRECTORY = 0x4 }; - enum class Thread : uint8_t - { - File, - Network, - Background, - }; - using TFilesWithType = std::vector>; protected: @@ -72,17 +60,9 @@ protected: /// Temporary directory, can be cleaned up by the system std::string m_tmpDir; - /// Extended resource files. - /// Used in Android only (downloaded zip files as a container). - std::vector m_extResFiles; - /// Returns last system call error as EError. static EError ErrnoToError(); - std::unique_ptr m_networkThread; - std::unique_ptr m_fileThread; - std::unique_ptr m_backgroundThread; - public: Platform(); virtual ~Platform() = default; @@ -159,7 +139,6 @@ public: FilesList & outFiles); static void GetFilesByRegExp(std::string const & directory, std::string const & regexp, FilesList & outFiles); - //@} static void GetFilesByType(std::string const & directory, unsigned typeMask, TFilesWithType & outFiles); @@ -180,14 +159,6 @@ public: static bool GetFileSizeByFullPath(std::string const & filePath, uint64_t & size); //@} - /// Used to check available free storage space for downloading. - enum TStorageStatus - { - STORAGE_OK = 0, - STORAGE_DISCONNECTED, - NOT_ENOUGH_SPACE - }; - // Please note, that number of active cores can vary at runtime. // DO NOT assume for the same return value between calls. unsigned CpuCores() const; diff --git a/platform/platform_tests/CMakeLists.txt b/platform/platform_tests/CMakeLists.txt index 2204f0a..2714df2 100644 --- a/platform/platform_tests/CMakeLists.txt +++ b/platform/platform_tests/CMakeLists.txt @@ -18,15 +18,3 @@ geocore_link_libraries( platform ) -if (PLATFORM_MAC) - geocore_link_libraries( - ${PROJECT_NAME} - "-framework QuartzCore" - ) -endif() - -if (PLATFORM_WIN OR PLATFORM_LINUX) - geocore_link_libraries( - ${PROJECT_NAME} - ) -endif()