1
0
Fork 0
forked from lthn/blockchain

yet another attempt to fix macOS warnings and errors (CMAKE_OSX_DEPLOYMENT_TARGET: 10.12 -> 10.13)

This commit is contained in:
sowle 2024-04-04 20:58:02 +02:00
parent ea7e99f7d3
commit 95368faccd
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC
2 changed files with 2 additions and 1 deletions

View file

@ -69,7 +69,7 @@ find_package(OpenSSL REQUIRED)
if(APPLE)
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.12)
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.13)
endif()
set(USE_PCH FALSE CACHE BOOL "Use shared precompiled headers")

View file

@ -234,6 +234,7 @@ namespace tools
wallet2(const wallet2&) = delete;
public:
wallet2();
virtual ~wallet2() {}
static std::string transfer_flags_to_str(uint32_t flags);