From 2a273d3b98a405f7f2c2619e38f104da0374dd77 Mon Sep 17 00:00:00 2001 From: program-- Date: Fri, 15 Sep 2023 07:18:59 -0700 Subject: [PATCH] cmake: update comments for clarity --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 93e44a83ec..88cab046e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ cmake_policy(SET CMP0094 NEW) # https://cmake.org/cmake/help/latest/policy/CMP0074.html cmake_policy(SET CMP0074 NEW) -# find_package() uses upper-case _ROOT variables. +# find_package() uses upper-case _ROOT variables in conjunction with CMP0074. # https://cmake.org/cmake/help/latest/policy/CMP0144.html if(POLICY CMP0144) cmake_policy(SET CMP0144 NEW) @@ -97,7 +97,7 @@ if(NGEN_WITH_MPI) endif() # ----------------------------------------------------------------------------- -# FIXME: Is this needed for icpx? or even icpp? This only enables support for SYCL - Justin +# TODO: Used for compatibility on Hera. Refactor this in the future. # https://www.intel.com/content/www/us/en/develop/documentation/oneapi-dpcpp-cpp-compiler-dev-guide-and-reference/top/compiler-setup/use-the-command-line/use-cmake-with-the-compiler.html if(INTEL_DPCPP) find_package(IntelDPCPP REQUIRED)