Navigation

    Qt Forum

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

    • SOLVED building qsqlmysql.dll for msvc error
      General and Desktop • mysql msvc nmake mysql driver qt5.15.1 • • mvsri  

      5
      0
      Votes
      5
      Posts
      60
      Views

      @Christian-Ehrlicher said in building qsqlmysql.dll for msvc error: Forgot to copy or typo? I forgot to copy. I looked into Makefile.Release and realised that instead of C:\mysql\include this It was including this C:\Program Files\MySQL\MySQL Server 8.0\include I deleted qmake.stash and config.cache and repeated the qmake again and this time I generated qsqlmysql.dll successfully. Tested it with Sample Cpp code in Qt, it's working. @Christian-Ehrlicher Thanks for the suggestion.
    • SOLVED Qt app build from command line
      General and Desktop • nmake cmd qmak • • sayan275  

      13
      0
      Votes
      13
      Posts
      281
      Views

      If the VS 2015 executables are in the default system PATH then this is the result I would expect from a normal CMD shell. I expect that after running vcvarsall in that CMD shell its PATH will have the VS 2017 binary directory inserted before the VS 2015 ones.
    • SOLVED Failed to build Qt5.8 with openssl1.0.2p linked[MSVC2015]
      General and Desktop • openssl msvc2015 qtnetwork nmake • • IMAN4K  

      6
      0
      Votes
      6
      Posts
      1318
      Views

      @SGaist NO, both are 32bit. Seems clearing the build dir and make again solved the problem!
    • SOLVED Qt Static Build Configuration
      General and Desktop • static static build msvc2015 nmake 5.10.1 • • ed-wright  

      4
      0
      Votes
      4
      Posts
      613
      Views

      @ed-wright Not sure, but probably you have to do a "nmake distclean" in between or it finds your license information. However, this is the opensource forum. You would need to approach the commercial, they have to able to give the proper answer.
    • SOLVED Static Builds not Working
      General and Desktop • static static build msvc2015 nmake 5.10.1 • • ed-wright  

      19
      0
      Votes
      19
      Posts
      5749
      Views

      Super good work. Thanks for updating on the way. will be helpful for others.
    • UNSOLVED DB2 ODBC static build issue
      Installation and Deployment • nmake odbc msvc2010 qt4.7.4 db2 • • win_  

      6
      0
      Votes
      6
      Posts
      1846
      Views

      @mrjj well, thanks. I've tried to add #include <sqltypes.h> just in case, and voilĂ , now there are errors(C2065, C3861) inside Qt(drivers\odbc\qsql_odbc.cpp). Don't know if it's better, but still something.
    • SOLVED Build static linked app with Qt5 on Windows
      General and Desktop • static linking nmake c++ windows • • Redleouf  

      5
      0
      Votes
      5
      Posts
      4998
      Views

      Indeed it did the work, it is working fine now, thank you :)
    • UNSOLVED Building 3rd party library before own project
      General and Desktop • qmake visual studio nmake 3rd party libtiff • • Bart_Vandewoestyne  

      7
      0
      Votes
      7
      Posts
      2942
      Views

      Hi, A bit off topic but why not use the libtiff bundled with Qt ? That could avoid you the trouble having to build an external version of it. Unless you absolutely need that specific version.
    • UNSOLVED Qt command error when nmake the odbc files
      General and Desktop • nmake odbc command • • Leo Z  

      2
      0
      Votes
      2
      Posts
      848
      Views

      Hi, Looks like you've opened a x86 development command line rather than the amd64.
    • UNSOLVED NMAKE : Fatal error U1077, return code '0x1'
      General and Desktop • nmake • • Tomasito665  

      8
      0
      Votes
      8
      Posts
      17526
      Views

      Ok, so I was able to resolve my issue after a lot of messing about. The short of it was that my Makefile.release file wasn't including the cstdint header file. I'm not sure where in the configuration it went wrong (configure.exe) but I had to add to the Makefile.release file the following information: INCPATH= -I"c:<msvc path>\VC\include" INCPATH is already there. You need to add the rest BEFORE the rest of the path information being included. It didn't work when placed afterwards. This worked until I came across another problem with the StringsExtras.h file, which was another issue (had to comment out the 'endif' statements on lines 79 and 91). Anyway, if that helps someone - great!
    • UNSOLVED Error compiling QT4 with VS2015
      General and Desktop • qt4 nmake vs2015 javascriptcore • • EarthHobbit  

      2
      0
      Votes
      2
      Posts
      3365
      Views

      Why Qt 4.8.6 and not the latest Qt 4.8.7 ? I've compiled Qt 4.8.7 with VS2010, VS2013 and VS2015, in 32 and 64 bits, here's my steps: https://github.com/sandym/qt-patches/tree/master/windows/qt-4.8.7
    • Add a new mkspec in order to get qt working with VS 2015
      Installation and Deployment • framework nmake vs2015 jom mkvspec • • extdev  

      2
      0
      Votes
      2
      Posts
      962
      Views

      Hi and welcome to devnet, Unless you're using an old version of Qt, the mkspec for VS2015 is already in so you can build Qt with it. As for jom, you can just call it in place of nmake. Use the full path to the exe and you should be good to go. Hope it helps
    • building qt 5.x under windows developer prompt
      Installation and Deployment • windows build visual studio 5.5 nmake developer comma • • osssome  

      6
      0
      Votes
      6
      Posts
      2171
      Views

      OK Thanks