Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. boost
    Log in to post

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

      5
      0
      Votes
      5
      Posts
      135
      Views

      @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
    • 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
      1266
      Views

      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.
    • UNSOLVED Linking CGAL & BOOSt to qt-creator project
      General and Desktop • c++ qtcreator boost vc2013 cgal • • nour.m  

      14
      0
      Votes
      14
      Posts
      3242
      Views

      @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
    • UNSOLVED Qt mingw and boost libraries
      General and Desktop • windows mingw boost • • tomkulaga  

      4
      0
      Votes
      4
      Posts
      1299
      Views

      Did you try to run your application through debugger to see why it crashes? Any error messages?
    • UNSOLVED Qt & Boost not going along
      Installation and Deployment • boost • • RaJiska  

      1
      0
      Votes
      1
      Posts
      371
      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
      908
      Views

      @SGaist heh – I must be receiving your comments telepathically – I just "discovered" that a few minutes before seeing your comment. thanks!
    • BOOST link problem related to the migration of Qt4 to Qt5 using MinGW on Windows
      General and Desktop • qt5.5 desktop mingw32 linker errors windows7 boost migration • • Claude  

      11
      0
      Votes
      11
      Posts
      4780
      Views

      For b, check whether the library has other dependencies. You might be missing one.
    • QtCreator bug - prośba o głos
      Polish • qtcreator bug boost code model • • grzechu81  

      1
      0
      Votes
      1
      Posts
      617
      Views

      No one has replied

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

      1
      0
      Votes
      1
      Posts
      403
      Views

      No one has replied

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

      4
      0
      Votes
      4
      Posts
      3674
      Views

      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>)
    • Install Boost correctly into Qt (failing currently with permission denied)
      Installation and Deployment • boost qt install • • ion_knight  

      1
      0
      Votes
      1
      Posts
      408
      Views

      No one has replied