diff --git a/.travis.yml b/.travis.yml index 895ddd8d7..17ff58bfd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -102,8 +102,7 @@ matrix: - coveralls --build-root test --include include/nlohmann --gcov 'gcov-4.9' --gcov-options '\-lp' env: - COMPILER=g++-4.9 - - CMAKE_OPTIONS=-DJSON_MultipleHeader=ON - - CMAKE_OPTIONS_MORE=-DJSON_Coverage=ON + - CMAKE_OPTIONS=-DJSON_Coverage=ON # Coverity (only for branch coverity_scan) @@ -289,7 +288,7 @@ script: # compile and execute unit tests - mkdir -p build && cd build - - cmake .. ${CMAKE_OPTIONS} ${CMAKE_OPTIONS_MORE} -GNinja && cmake --build . --config Release + - cmake .. ${CMAKE_OPTIONS} -GNinja && cmake --build . --config Release - ctest -C Release -V -j - cd .. diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index d53d5c4b3..1dfe34009 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -41,6 +41,7 @@ if(JSON_Coverage) find_program(GCOV_BIN NAMES gcov-${GCC_VERSION} gcov HINTS ${COMPILER_PATH}) # collect all source files from the chosen include dir + set(NLOHMANN_JSON_INCLUDE_BUILD_DIR "${PROJECT_SOURCE_DIR}/single_include/") file(GLOB_RECURSE SOURCE_FILES ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}*.hpp) # add target to collect coverage information and generate HTML file