Skip to content

Commit

Permalink
fix boost layout, update submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
gcontini committed Dec 1, 2019
1 parent 4e71831 commit d02fce4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ matrix:
- 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
Expand Down
2 changes: 1 addition & 1 deletion extern/license-generator
12 changes: 6 additions & 6 deletions src/library/os/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
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
Expand Down

0 comments on commit d02fce4

Please sign in to comment.