File: PrintOpts.cmake

package info (click to toggle)
eztrace 2.2.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,012 kB
  • sloc: ansic: 37,703; sh: 1,246; cpp: 1,181; perl: 910; makefile: 738; fortran: 327; f90: 320; python: 124
file content (34 lines) | stat: -rw-r--r-- 1,497 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
set(dep_message "\nConfiguration of EZtrace:\n"
  "	General:\n"
  "		Install directory : ${CMAKE_INSTALL_PREFIX}\n"
  "		Compiler: C       : ${CMAKE_C_COMPILER} (${CMAKE_C_COMPILER_ID})\n"
  "		Compiler: Fortran : ${CMAKE_Fortran_COMPILER} (${CMAKE_Fortran_COMPILER_ID})\n"
  "		BFD Path	  : ${BFD_LIBRARY}\n"
  "\n"
  "		Operating system  : ${CMAKE_SYSTEM_NAME}\n")

  set(dep_message "${dep_message}\n		enable binary instrumentation : ")
if (ENABLE_BIN_INSTRUMENTATION)
  set(dep_message "${dep_message}" "Yes\n")
else()
  set(dep_message "${dep_message}" "No\n")
endif()


set(dep_message "${dep_message}\n"
  "  Compiler-instrumentation : ${EZTRACE_ENABLE_COMPILER_INSTRUMENTATION}\n"
  "  CUDA module              : ${EZTRACE_ENABLE_CUDA}\n"
  "  IOtracer module          : ${EZTRACE_ENABLE_IOTRACER}\n"
  "  Memory module            : ${EZTRACE_ENABLE_MEMORY}\n"
  "  MPI module               : ${EZTRACE_ENABLE_MPI}\n"
  "  NetCDF module            : ${EZTRACE_ENABLE_NETCDF}\n"
  "  OMPT module              : ${EZTRACE_ENABLE_OMPT}\n"
  "  OpenMP module            : ${EZTRACE_ENABLE_OPENMP}\n"
  "  POSIXIO module           : ${EZTRACE_ENABLE_POSIXIO}\n"
  "  PNetCDF module           : ${EZTRACE_ENABLE_PNETCDF}\n"
  "  Pthread module           : ${EZTRACE_ENABLE_PTHREAD}\n"
  "  Python module            : ${EZTRACE_ENABLE_PYTHON}\n"
  "  StarPU module            : ${EZTRACE_ENABLE_STARPU}\n"
  "  StarPU API module        : ${EZTRACE_ENABLE_STARPU_API}\n"
)
message(${dep_message})