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. How to include Barcode library
Forum Updated to NodeBB v4.3 + New Features

How to include Barcode library

Scheduled Pinned Locked Moved Solved General and Desktop
2 Posts 2 Posters 643 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.
  • M Offline
    M Offline
    Manasa1744
    wrote on last edited by
    #1

    Barcode library contain source files and binary file (.dll). How can i include this thirdparty in my project. By using functions of this library i can do the generation of barcode image by giving the string as input. So can anyone help me to do this.

    aha_1980A 1 Reply Last reply
    0
    • M Manasa1744

      Barcode library contain source files and binary file (.dll). How can i include this thirdparty in my project. By using functions of this library i can do the generation of barcode image by giving the string as input. So can anyone help me to do this.

      aha_1980A Offline
      aha_1980A Offline
      aha_1980
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @Manasa1744 said in How to include Barcode library:

      Barcode library contain source files and binary file (.dll). How can i include this thirdparty in my project. By using functions of this library i can do the generation of barcode image by giving the string as input. So can anyone help me to do this.

      It would be helpful to have some more information about the library you want to add (a link to the library for example?)

      As you mention dll, I guess you are on Windows. If you want to integrate the DLL, you have to make sure you are using the same compiler that was used to produce the DLL. Otherwise you will have to compile the library yourself.

      Then the usual way is to add to your .pro file:

      INCLUDEPATH += /path/to/library/include

      and

      LIBS += -L/path/to/library/lib -llibraryname

      Qt has to stay free or it will die.

      1 Reply Last reply
      3

      • Login

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