1. 07 Jun, 2016 15 commits
  2. 06 Jun, 2016 1 commit
  3. 29 May, 2016 8 commits
  4. 28 May, 2016 1 commit
  5. 25 May, 2016 1 commit
  6. 18 May, 2016 4 commits
    • Niels's avatar
      added hint to Homebrew · a3f432b3
      Niels authored
      a3f432b3
    • Niels's avatar
      Merge pull request #247 from robertmrk/feature/cmake-cleanup · 25d60b7b
      Niels authored
      Define CMake/CTest tests
      25d60b7b
    • Niels's avatar
      fixed #246 · 83761712
      Niels authored
      83761712
    • Robert Marki's avatar
      Define CMake/CTest tests · 639d6321
      Robert Marki authored
      Instead of copying the test executable and the JSON files used by
      the tests at install time, define CMake/CTest tests for running
      the json_unit executable from any build directory with the project's
      source directory as its working directory.
      
      - call enable_testing in the main lists file to allow the definition
      of tests
      - remove install commands from the test directory's lists file
      - define two tests
        - json_unit_default for running the default tests by executing
      json_unit without any arguments
        - json_unit_all for running all the tests by executing json_unit
      with the "*" argument
      - update the AppVeyor configuration file to use the new testing method
      639d6321
  7. 12 May, 2016 1 commit
  8. 11 May, 2016 9 commits
    • Niels's avatar
      fixed a warning and update ChangeLog · 0e0ecb2c
      Niels authored
      0e0ecb2c
    • Niels's avatar
      thanks · fb063568
      Niels authored
      fb063568
    • Niels's avatar
      Merge pull request #242 from ChrisKitching/outOfTree · 888d0225
      Niels authored
      Out of tree builds and a few other miscellaneous CMake cleanups.
      888d0225
    • Niels's avatar
      fixed a shadow error · f1e61896
      Niels authored
      f1e61896
    • Niels's avatar
      fixed issue #239 (-Wconversion warnings) · db5c9ec9
      Niels authored
      db5c9ec9
    • Niels's avatar
      Merge branch 'develop' into feature/issue239 · 91aa4c9d
      Niels authored
      91aa4c9d
    • Chris Kitching's avatar
      Repair appveyor... Horrifyingly · 0e2f0c4e
      Chris Kitching authored
      It's sort of gnarly that it's still doing in-tree builds, but I
      really, _really_ don't want to get any more friendly with CMake's
      Visual Studio generator to work out how to make it stop doing it.
      
      In-tree builds still work, after all, and the goal of this work is
      to make out-of-tree builds work as well. Notional horrors like
      this will have to wait ;)
      0e2f0c4e
    • Chris Kitching's avatar
      Install the test binary and test data. Fixes #241 · 527a69bb
      Chris Kitching authored
      The resulting install tree, when tests are enabled, looks like this:
      
      ```
      .
      ├── cmake
      │   ├── nlohmann_jsonConfig.cmake
      │   ├── nlohmann_jsonConfigVersion.cmake
      │   └── nlohmann_jsonTargets.cmake
      ├── include
      │   └── nlohmann
      │       └── json.hpp
      └── test
          ├── bin
          │   └── json_unit
          └── data
              ├── json_nlohmann_tests
              │   ├── all_unicode.json
              │   └── bom.json
              ├── json.org
              │   ├── 1.json
              │   ├── ...
              ├── json_roundtrip
              │   ├── roundtrip01.json
              │   ├── roundtrip02.json
              │   └── ...
              ├── json_tests
              │   ├── fail10.json
              │   └── ...
              └── json_testsuite
                  └── sample.json
      ```
      
      It has the property that you can invoke the test binary from the
      root of the install tree and the tests work correctly (you no
      longer depend on the test binary being run inside the source
      tree).
      
      If tests are disabled, the entire `test/` subtree is omitted.
      Notice how that yields exactly what you want for using this
      library in other projects.
      
      I do not believe I need to update travis due to this change, as the
      evil Makefile continues to do in-tree builds. I expect I'll find
      out soon enough.
      527a69bb
    • Chris Kitching's avatar
      Introduce structure to the test/ directory · af76508f
      Chris Kitching authored
      This introduces a clear separation between test data and test
      binaries. Test data is moved into test/data, and the test binaries
      move into test/src. A new CMake script specific to building the
      tests is introduced in /test to slightly clean up the toplevel
      one.
      
      As well as tidying things up, this makes the next step trivial...
      af76508f