aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt40
-rw-r--r--src/CMakeLists.txt3
2 files changed, 0 insertions, 43 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 16a9551d..9bba43c8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -71,8 +71,6 @@ endif()
if(STATIC)
message(STATUS "Initiating static build")
- set(Boost_USE_STATIC_LIBS ON)
- set(Boost_USE_STATIC_RUNTIME ON)
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a" ${CMAKE_FIND_LIBRARY_SUFFIXES})
add_definitions(-DMONERO_GUI_STATIC)
endif()
@@ -129,27 +127,6 @@ endif()
find_library(SODIUM_LIBRARY sodium)
message(STATUS "libsodium: libraries at ${SODIUM_LIBRARY}")
-# Boost
-if(DEBUG)
- set(Boost_DEBUG ON)
-endif()
-if(APPLE AND NOT BOOST_ROOT)
- execute_process(COMMAND brew --prefix boost OUTPUT_VARIABLE BOOST_ROOT OUTPUT_STRIP_TRAILING_WHITESPACE)
-endif()
-if(MINGW)
- set(Boost_THREADAPI win32)
-endif()
-find_package(Boost 1.58 REQUIRED COMPONENTS
- system
- filesystem
- thread
- date_time
- chrono
- regex
- serialization
- program_options
- locale)
-
if(UNIX AND NOT APPLE AND NOT ANDROID)
set(CMAKE_SKIP_RPATH ON)
set(CMAKE_FIND_LIBRARY_SUFFIXES_PREV ${CMAKE_FIND_LIBRARY_SUFFIXES})
@@ -167,19 +144,6 @@ if(UNIX AND NOT APPLE AND NOT ANDROID)
endif()
endif()
-if(MINGW)
- string(REGEX MATCH "^[^/]:/[^/]*" msys2_install_path "${CMAKE_C_COMPILER}")
- message(STATUS "MSYS location: ${msys2_install_path}")
- set(CMAKE_INCLUDE_PATH "${msys2_install_path}/mingw${ARCH_WIDTH}/include")
- # This is necessary because otherwise CMake will make Boost libraries -lfoo
- # rather than a full path. Unfortunately, this makes the shared libraries get
- # linked due to a bug in CMake which misses putting -static flags around the
- # -lfoo arguments.
- set(DEFLIB ${msys2_install_path}/mingw${ARCH_WIDTH}/lib)
- list(REMOVE_ITEM CMAKE_C_IMPLICIT_LINK_DIRECTORIES ${DEFLIB})
- list(REMOVE_ITEM CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES ${DEFLIB})
-endif()
-
set(QT5_LIBRARIES
Qt5Core
Qt5Quick
@@ -392,10 +356,6 @@ if(ANDROID)
endforeach()
endif()
-message(STATUS "Using Boost include dir at ${Boost_INCLUDE_DIRS}")
-message(STATUS "Using Boost libraries at ${Boost_LIBRARIES}")
-
-include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
if(MINGW)
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wa,-mbig-obj")
set(EXTRA_LIBRARIES mswsock;ws2_32;iphlpapi;crypt32;bcrypt)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index fe0e14fd..9e57deea 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -102,7 +102,6 @@ target_include_directories(monero-wallet-gui PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/QR-Code-scanner
${CMAKE_CURRENT_SOURCE_DIR}/zxcvbn-c
${X11_INCLUDE_DIR}
- ${Boost_INCLUDE_DIRS}
${OPENSSL_INCLUDE_DIR}
)
@@ -127,10 +126,8 @@ target_link_libraries(monero-wallet-gui
wallet_api
qrcodegen
easylogging
- ${Boost_LIBRARIES}
${QT5_LIBRARIES}
${EXTRA_LIBRARIES}
- ${ICU_LIBRARIES}
openpgp
qrdecoder
translations