Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/rocprofiler-register/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.22.0 FATAL_ERROR)
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)

if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND CMAKE_CURRENT_SOURCE_DIR STREQUAL
CMAKE_SOURCE_DIR)
Expand Down
4 changes: 2 additions & 2 deletions projects/rocprofiler-register/external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if(ROCPROFILER_REGISTER_BUILD_GLOG)
set(WITH_UNWIND "none")
add_subdirectory(glog EXCLUDE_FROM_ALL)
else()
find_package(glog REQUIRED)
find_package(glog REQUIRED GLOBAL)
endif()

if(ROCPROFILER_REGISTER_BUILD_FMT)
Expand All @@ -33,5 +33,5 @@ if(ROCPROFILER_REGISTER_BUILD_FMT)
set(FMT_TEST OFF)
add_subdirectory(fmt EXCLUDE_FROM_ALL)
else()
find_package(fmt REQUIRED)
find_package(fmt REQUIRED GLOBAL)
endif()
Loading