Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. error: unrecognized command line option '-ssleay32'
Forum Updated to NodeBB v4.3 + New Features

error: unrecognized command line option '-ssleay32'

Scheduled Pinned Locked Moved Solved General and Desktop
4 Posts 2 Posters 752 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    haifisch
    wrote on last edited by
    #1

    I connect libraries in a pro file:
    LIBS += -libeay32 -ssleay32
    But he is going with a error.
    All the file:

    QT       += core gui
    QT       += axcontainer network
    greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
    
    TARGET = FeeCalculation
    TEMPLATE = app
    
    LIBS += -libeay32 -ssleay32
    
    DEFINES += QT_DEPRECATED_WARNINGS
    
    SOURCES += \
            main.cpp \
            mainwindow.cpp
    
    HEADERS += \
            mainwindow.h
    
    FORMS += \
            mainwindow.ui
    ```The libraries are in the folder.
    libeay32.dll
    ssleay32.dll
    H 1 Reply Last reply
    0
    • Chris KawaC Offline
      Chris KawaC Offline
      Chris Kawa
      Lifetime Qt Champion
      wrote on last edited by
      #3

      The syntax is LIBS += -Lpathtothelib -lnameofthelib. That's -L for path and -l (lowercase L) for lib name.

      H 1 Reply Last reply
      2
      • H haifisch

        I connect libraries in a pro file:
        LIBS += -libeay32 -ssleay32
        But he is going with a error.
        All the file:

        QT       += core gui
        QT       += axcontainer network
        greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
        
        TARGET = FeeCalculation
        TEMPLATE = app
        
        LIBS += -libeay32 -ssleay32
        
        DEFINES += QT_DEPRECATED_WARNINGS
        
        SOURCES += \
                main.cpp \
                mainwindow.cpp
        
        HEADERS += \
                mainwindow.h
        
        FORMS += \
                mainwindow.ui
        ```The libraries are in the folder.
        libeay32.dll
        ssleay32.dll
        H Offline
        H Offline
        haifisch
        wrote on last edited by
        #2

        @haifisch said in error: unrecognized command line option '-ssleay32':

        I connect libraries in a pro file:
        LIBS += -libeay32 -ssleay32
        But he is going with a error.
        All the file:

        QT       += core gui
        QT       += axcontainer network
        greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
        
        TARGET = FeeCalculation
        TEMPLATE = app
        
        LIBS += -libeay32 -ssleay32
        
        DEFINES += QT_DEPRECATED_WARNINGS
        
        SOURCES += \
                main.cpp \
                mainwindow.cpp
        
        HEADERS += \
                mainwindow.h
        
        FORMS += \
                mainwindow.ui
        

        The libraries are in the folder.
        libeay32.dll
        ssleay32.dll

        1 Reply Last reply
        0
        • Chris KawaC Offline
          Chris KawaC Offline
          Chris Kawa
          Lifetime Qt Champion
          wrote on last edited by
          #3

          The syntax is LIBS += -Lpathtothelib -lnameofthelib. That's -L for path and -l (lowercase L) for lib name.

          H 1 Reply Last reply
          2
          • Chris KawaC Chris Kawa

            The syntax is LIBS += -Lpathtothelib -lnameofthelib. That's -L for path and -l (lowercase L) for lib name.

            H Offline
            H Offline
            haifisch
            wrote on last edited by
            #4

            @Chris-Kawa Thank you

            1 Reply Last reply
            0

            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Search
            • Get Qt Extensions
            • Unsolved