Skip to content

Commit

Permalink
Update CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
daboehme authored Dec 8, 2023
1 parent a20e5fd commit b90be9a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ set(CMAKE_CXX_VISIBILITY_PRESET "default")

# Version information
set(CALIPER_MAJOR_VERSION 2)
set(CALIPER_MINOR_VERSION 10)
set(CALIPER_MINOR_VERSION 11)
set(CALIPER_PATCH_VERSION 0)
set(CALIPER_VERSION "${CALIPER_MAJOR_VERSION}.${CALIPER_MINOR_VERSION}.${CALIPER_PATCH_VERSION}-dev")

Expand Down Expand Up @@ -65,12 +65,11 @@ add_caliper_option(WITH_MPI "Enable MPI" FALSE)
# add_caliper_option(WITH_MPIT "Enable MPI-T" FALSE)
add_caliper_option(WITH_OMPT "Enable OMPT" FALSE)
add_caliper_option(WITH_SAMPLER "Enable Linux sampler (x86 and PPC Linux only)" FALSE)
add_caliper_option(WITH_DYNINST "Enable dyninst (for symbollookup service" FALSE)
add_caliper_option(WITH_GOTCHA "Enable GOTCHA wrapping" ${CALIPER_HAVE_LINUX})
add_caliper_option(WITH_ROCTX "Enable AMD RocTX support" FALSE)
add_caliper_option(WITH_ROCTRACER "Enable AMD RocTracer support" FALSE)
add_caliper_option(WITH_ROCM "Enable AMD RocTracer and RocTX support" FALSE)
add_caliper_option(WITH_SOS "Enable SOSFlow data management" FALSE)
#add_caliper_option(WITH_SOS "Enable SOSFlow data management" FALSE)
add_caliper_option(WITH_TAU "Enable TAU service (TAU Performance System)" FALSE)
add_caliper_option(WITH_VTUNE "Enable Intel(R) VTune(tm) annotation bindings" FALSE)
add_caliper_option(WITH_ADIAK "Enable adiak support" FALSE)
Expand Down Expand Up @@ -278,7 +277,7 @@ endif()
if (WITH_GOTCHA)
if (CALIPER_HAVE_LINUX)
if (USE_EXTERNAL_GOTCHA)
find_package(gotcha 1.0)
find_package(gotcha 2.0)
if (gotcha_FOUND)
get_target_property(_gotcha_location gotcha LOCATION)
set(CALIPER_GOTCHA_CMAKE_MSG "Yes, using ${_gotcha_location}")
Expand Down

0 comments on commit b90be9a

Please sign in to comment.