Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal-apps
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 80f4f6023b8c
Choose a base ref
...
head repository: ngscopeclient/scopehal-apps
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8878adc7bd0d
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Oct 17, 2020

  1. cppcheck now runs in C++ 11 mode, rather than suggesting improvements…

    … using C++ 20 features not available on older-but-still-supported platforms like Debian. Removed old ibistest prototype
    azonenberg committed Oct 17, 2020
    Copy the full SHA
    8878adc View commit details
Showing with 1 addition and 123 deletions.
  1. +1 −2 CMakeLists.txt
  2. +0 −19 src/examples/ibistest/CMakeLists.txt
  3. +0 −102 src/examples/ibistest/main.cpp
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ endif()
if(ANALYZE)
find_program(CPPCHECK_PATH cppcheck DOC "Path to cppcheck when ANALYZE is enabled")
if(CPPCHECK_PATH)
set(CMAKE_CXX_CPPCHECK "${CPPCHECK_PATH};-DFT_USE_AUTOCONF_SIZEOF_TYPES;--enable=warning,performance,portability;--suppress=*:*sigc*;--suppress=*:*glibmm*;--suppress=*:*gtkmm*;--inline-suppr;-q")
set(CMAKE_CXX_CPPCHECK "${CPPCHECK_PATH};-DFT_USE_AUTOCONF_SIZEOF_TYPES;--enable=warning,performance,portability;--suppress=*:*sigc*;--suppress=*:*glibmm*;--suppress=*:*gtkmm*;--inline-suppr;-q;--std=c++11")
message(STATUS "Found CPPCheck: ${CPPCHECK_PATH}")
else()
message(STATUS "CPPCheck not found")
@@ -60,7 +60,6 @@ if(NOT WIN32)
add_subdirectory("${PROJECT_SOURCE_DIR}/src/reflowmon")
add_subdirectory("${PROJECT_SOURCE_DIR}/src/examples/curvetrace")
add_subdirectory("${PROJECT_SOURCE_DIR}/src/examples/fgtest")
add_subdirectory("${PROJECT_SOURCE_DIR}/src/examples/ibistest")
endif()

set_property(TARGET scopehal PROPERTY POSITION_INDEPENDENT_CODE ON)
19 changes: 0 additions & 19 deletions src/examples/ibistest/CMakeLists.txt

This file was deleted.

102 changes: 0 additions & 102 deletions src/examples/ibistest/main.cpp

This file was deleted.