summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: 8be664e2acdea4d7d6c576f87ee192ce0aa6b840 (plain)
1
2
3
4
5
6
7
8
9
find_package(elfutils)

if (NOT elfutils_FOUND)
  message(STATUS "PerfParser is disabled. Set ELFUTILS_INSTALL_DIR to enable it.")
  return()
endif()

add_subdirectory(app)
add_subdirectory(tests)