Skip to content

Commit

Permalink
Merge branch 'master' of github.com:xxxcucus/planes
Browse files Browse the repository at this point in the history
  • Loading branch information
xxxcucus committed Mar 21, 2024
2 parents 6b667ac + 007dd3c commit 8559ec5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions c_plus_plus/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ if (UNIX)
install(DIRECTORY ${ROOT_PATH}/qml/QtQuick/Window DESTINATION bin/QtQuick/)
install(DIRECTORY ${ROOT_PATH}/qml/QtQml DESTINATION bin)

install(FILES $ENV{OPENSSL_HOME}/libcrypto.so.1.1 DESTINATION lib)
install(FILES $ENV{OPENSSL_HOME}/libssl.so.1.1 DESTINATION lib)
install(FILES $ENV{OPENSSL_HOME}/libcrypto.so DESTINATION lib)
install(FILES $ENV{OPENSSL_HOME}/libssl.so DESTINATION lib)
install(FILES $ENV{OPENSSL_HOME}/libcrypto.so.3 DESTINATION lib)
install(FILES $ENV{OPENSSL_HOME}/libssl.so.3 DESTINATION lib)
#install(FILES $ENV{OPENSSL_HOME}/libcrypto.so DESTINATION lib)
#install(FILES $ENV{OPENSSL_HOME}/libssl.so DESTINATION lib)


install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/PlanesWidget.sh PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ DESTINATION .)
Expand Down
2 changes: 2 additions & 0 deletions c_plus_plus/PlanesGraphicsScene/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
msgBox.exec();
bool isMultiplayer = msgBox.clickedButton() == multiplayerButton;

qDebug() << "SSL version" << QSslSocket::supportsSsl() << QSslSocket::sslLibraryBuildVersionString() << QSslSocket::sslLibraryVersionString();

//constructs and shows the program main window
PlanesGSWindow *planesWindow = new PlanesGSWindow(isMultiplayer);
planesWindow->show();
Expand Down

0 comments on commit 8559ec5

Please sign in to comment.