fix boost layout, update submodule
| | |
| | | - sudo ln -s /usr/bin/x86_64-w64-mingw32-g++ /usr/local/bin/g++-mingw |
| | | - cd boost_1_71_0 |
| | | - ./bootstrap.sh |
| | | - travis_wait 30 ./b2 toolset=gcc-mingw target-os=windows address-model=64 --with-date_time --with-test --with-filesystem --with-program_options --with-regex --with-serialization --with-system runtime-link=static --layout=tagged --prefix=./dist release install |
| | | - travis_wait 30 ./b2 toolset=gcc-mingw target-os=windows address-model=64 --with-date_time --with-test --with-filesystem --with-program_options --with-regex --with-serialization --with-system runtime-link=static --prefix=./dist release install |
| | | - cd .. |
| | | - wget --no-check-certificate https://bintray.com/vszakats/generic/download_file?file_path=openssl-1.0.2h-win64-mingw.7z -O openssl.7z |
| | | - 7z x openssl.7z |
| | |
| | | Subproject commit 2888065a157d4fb11304c4fc85bbac073a0d67a3 |
| | | Subproject commit 12eaeb702ad788ccc4ac054d69f2c819783d57c1 |
| | |
| | | IF(UNIX OR OPENSSL_FOUND) |
| | | ADD_LIBRARY(os STATIC |
| | | openssl/signature_verifier.cpp |
| | | os.c |
| | | os-linux.c |
| | | network_id.c) |
| | | |
| | | IF(UNIX) |
| | | ADD_LIBRARY(os STATIC openssl/signature_verifier.cpp os.c os-linux.c network_id.c) |
| | | ELSE(UNIX) |
| | | ADD_LIBRARY(os STATIC openssl/signature_verifier.cpp os.c os-win.c) |
| | | ENDIF(UNIX) |
| | | |
| | | if (CMAKE_VERSION VERSION_GREATER 3.5) |
| | | target_link_libraries(os base OpenSSL::Crypto ${EXTERNAL_LIBS} ${CMAKE_DL_LIBS}) |
| | | #patch for old cmake in Centos 7 |