File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ cmake -G "${CMAKE_GENERATOR:-Ninja}" \
172172 -Dvt_tests_num_nodes=" ${VT_TESTS_NUM_NODES:- } " \
173173 -Dvt_external_fmt=" ${VT_EXTERNAL_FMT:- 0} " \
174174 -Dfmt_DIR=" ${FMT_DIR} " \
175- -DLIBUNWIND_ROOT=" ${LIBUNWIND_ROOT :-/ usr} " \
175+ -DLIBUNWIND_ROOT=" ${libunwind_ROOT :-/ usr} " \
176176 -Dvt_no_color_enabled=" ${VT_NO_COLOR_ENABLED:- 0} " \
177177 -DCMAKE_CXX_STANDARD=" ${CMAKE_CXX_STANDARD:- 17} " \
178178 -DBUILD_SHARED_LIBS=" ${BUILD_SHARED_LIBS:- 0} " \
Original file line number Diff line number Diff line change 11set (vt_feature_cmake_libunwind "0" )
22
3- cmake_policy (PUSH)
4-
5- cmake_policy (SET CMP0144 NEW)
6-
7- if (NOT DEFINED LIBUNWIND_ROOT)
8- set (LIBUNWIND_ROOT "/usr" )
3+ if (NOT DEFINED libunwind_ROOT)
4+ set (libunwind_ROOT "/usr" )
95endif ()
106
117find_package (libunwind)
128
13- cmake_policy (POP)
14-
15- if (LIBUNWIND_FOUND)
9+ if (libunwind_FOUND)
1610 set (vt_feature_cmake_libunwind "1" )
1711endif ()
You can’t perform that action at this time.
0 commit comments