Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. boost
    Log in to post
    • All categories
    • C

      Unsolved Boost Unit Test Problems
      3rd Party Software • boost • • Conical

      5
      0
      Votes
      5
      Posts
      729
      Views

      K

      @Conical

      The INCLUDEPATH seems to be correct. At least what you are showing.

      I do not know the test library feature of boost. However, I know that some features require separate compilation which will create libraries. This would be for the regular expression of boost for instance. Those libraries need to be referenced with LIBS statement.
      https://doc.qt.io/qt-5/qmake-variable-reference.html#libs

    • N

      Unsolved The kit Desktop Qt 5.7.1 MSVC2013 64bit has configuration issues which might be the root cause for this problem. When executing step "Make"
      General and Desktop • qtcreator boost • • nour.m

      7
      0
      Votes
      7
      Posts
      2101
      Views

      dheerendra

      It is boost library issue. Looks like you are not using the capture method of boost properly . Look at some examples of boost and fix your issue.

    • N

      Unsolved Linking CGAL & BOOSt to qt-creator project
      General and Desktop • boost qtcreator c++ vc2013 cgal • • nour.m

      14
      0
      Votes
      14
      Posts
      3920
      Views

      J.Hilk

      @nour.m

      if you mean here:
      http://freetexthost.com/l5wzgtntzb
      than no, you did not make the changes @aha_1980 told you to do

      SOURCES += main.cpp mainwindow.cpp my_polyhedron.cpp myqglwidget.cpp HEADERS += mainwindow.h My_CGAL_Config.h My_Face_base.h My_Halfedge_base.h my_polyhedron.h My_Vertex_base.h myqglwidget.h

      still mising \ at the end of the line

      also you are adding the widgets module twice. I'm not sure in what that will result, but you should remove one

      QT += core gui QT += widgets //remove me DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x000000 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
    • T

      Unsolved Qt mingw and boost libraries
      General and Desktop • boost mingw windows • • tomkulaga

      4
      0
      Votes
      4
      Posts
      1452
      Views

      jsulm

      Did you try to run your application through debugger to see why it crashes?
      Any error messages?

    • R

      Unsolved Qt & Boost not going along
      Installation and Deployment • boost • • RaJiska

      1
      0
      Votes
      1
      Posts
      461
      Views

      No one has replied

    • ?

      Solved Qt and Boost (installed through Homebrew) result in Qt compile errors
      General and Desktop • boost • • A Former User

      3
      0
      Votes
      3
      Posts
      1034
      Views

      ?

      @SGaist

      heh – I must be receiving your comments telepathically – I just "discovered" that a few minutes before seeing your comment.

      thanks!

    • C

      BOOST link problem related to the migration of Qt4 to Qt5 using MinGW on Windows
      General and Desktop • boost migration qt5.5 linker errors windows7 desktop mingw32 • • Claude

      11
      0
      Votes
      11
      Posts
      5273
      Views

      SGaist

      For b, check whether the library has other dependencies. You might be missing one.

    • G

      QtCreator bug - prośba o głos
      Polish • qtcreator boost code model bug • • grzechu81

      1
      0
      Votes
      1
      Posts
      720
      Views

      No one has replied

    • G

      QtCreator bug in BOOST_FOREACH - I kindly ask for your vote.
      Tools • qtcreator boost • • grzechu81

      1
      0
      Votes
      1
      Posts
      496
      Views

      No one has replied

    • I

      Boost + Qt installation problem (cannot find -lboost_system)
      Installation and Deployment • boost qtcreator • • ion_knight

      4
      0
      Votes
      4
      Posts
      3965
      Views

      M

      Hi,

      library naming is something OS related (for instance the filename for a dynamic library called foo on Windows with Visual Studio will be foo.dll, on Linux libfoo.so, on OS X libfoo.dylib).

      For this reason when you pass the library name to the linker you have to omit the prefix (ususally lib) and the extension.

      NOTE in case of MinGW you'll have the naming conventions used in Linux/Unix (lib<library_name>.<extension>)

    • I

      Install Boost correctly into Qt (failing currently with permission denied)
      Installation and Deployment • qt install boost • • ion_knight

      1
      0
      Votes
      1
      Posts
      487
      Views

      No one has replied