readout software for 2 channels [0 and 1] of the tdc-gpx2 board with raspberry pi 3B SPI readout. This code is a fork of the original design by marvin.peter@physik.uni-giessen.de https://github.com/marvin5300/tdc-gpx2_software
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
424 B

1 year ago
  1. cmake_minimum_required (VERSION 3.10)
  2. project (gpx2)
  3. option(BUILD_TIDY "Use clang tidy to build" OFF)
  4. option(BUILD_TOOLS "Build additional tools (like readout program) in addition to the library" ON)
  5. option(BUILD_DOCS "Build doxygen files" OFF)
  6. set(CMAKE_BUILD_TYPE Release)
  7. message("${CMAKE_HOST_SYSTEM_PROCESSOR}")
  8. add_subdirectory(spi)
  9. if (BUILD_TOOLS)
  10. add_subdirectory(gpx2-raspi-readout-program)
  11. endif (BUILD_TOOLS)