1. 26 Dec, 2013 2 commits
    • Don Gagne's avatar
      AutoTest runner is now part of main · a45a5756
      Don Gagne authored
      a45a5756
    • Don Gagne's avatar
      Unit Tests are now part of main build · 0526d3be
      Don Gagne authored
      - debug builds always compile unit tests in
      - seperate qgcunittest.pro is no longer needed
      - found out the hard way that you can’t use debug or release as a
      scope. You need to use the CONFIG(debug,debug|relase) macro (in this
      example to test fro debug). Reason is that debug and release show up
      multiple times in CONFIG, last debug wins. This is what the CONFIG
      macro does. Without it, it’s luck as to what you get. I found OSX was
      getting debug, Linux was getting a debug build, build into release
      directories. QT_DEBUG set randomly. Lot’s of problems.
      0526d3be
  2. 25 Dec, 2013 4 commits
  3. 24 Dec, 2013 5 commits
  4. 23 Dec, 2013 3 commits
  5. 22 Dec, 2013 5 commits
  6. 19 Dec, 2013 5 commits
  7. 17 Dec, 2013 2 commits
  8. 12 Dec, 2013 8 commits
  9. 11 Dec, 2013 1 commit
  10. 10 Dec, 2013 3 commits
    • Don Gagne's avatar
      Use same resource file list between builds · 44cb715f
      Don Gagne authored
      Linux build was broken due to the fact that it wasn’t copying qml
      files. With each build flavor having it’s own seperate copy code it was
      easy for these to get out of sync. Centralized the copy list so that it
      remains in sync across flavors.
      44cb715f
    • Lorenz Meier's avatar
      Merge pull request #426 from thomasgubler/fix_type_compile_error · d2ede705
      Lorenz Meier authored
      change type of port from uint16_t to quint16
      d2ede705
    • Don Gagne's avatar
      Fixed broken UnitTest build · 694091f9
      Don Gagne authored
      Build files were broken for unit test. Seems to difficult to try to kep
      qgroundcontrol.pro and qgcunittest.pro in sync with each other. Instead
      I made qgcunittest.pro just include qgroundcontrol.pro. This required
      some tweaks to allow TARGET to be set from the outside as well as to
      leave out main.cc. Also needed to modify qgroundcontrol.pri to use
      TARGET instead of hardcoding app name. This way it can build either
      qgroundcontrol.pp or qgcunittest.app. At this point only works on osx.
      694091f9
  11. 08 Dec, 2013 2 commits