From c7bfe1e24c562dd0e21242c931a14c67183afa1e Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Wed, 19 Nov 2025 03:24:16 -0700 Subject: [PATCH 1/2] Add new CMake build options to INSTALL.md --- INSTALL.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index eb7952f8..5c5a3d30 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -25,10 +25,14 @@ that will be set by CMake. Options |Option|Default|Purpose| |------|-------|-------| -|BUILD\_ROCFILE|ON|Build the rocFile library (AMD only, OFF for NVIDIA)| -|BUILD\_HIPFILE|ON|Build the hipFile library| +|AIS\_USE\_CLANG\_TIDY|OFF|Run the `clang-tidy` tool| +|AIS\_USE\_IWYU|OFF|Run the `include-what-you-use` tool| |BUILD\_AIS\_DOCS|OFF|Build API documentation| +|BUILD\_AISCP|ON|Build `aiscp` example program (OFF for NVIDIA)| |BUILD\_CODE\_COVERAGE|OFF|Generate code coverage information when tests are run| +|BUILD\_HIPFILE|ON|Build the hipFile library| +|BUILD\_ROCFILE|ON|Build the rocFile library (AMD only, OFF for NVIDIA)| +|BUILD\_TESTING|ON|Build the test suite| ### Build `cmake --build .` From 9db8bf6002e71e31795b221446989beafaed9fb5 Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Wed, 19 Nov 2025 04:17:10 -0700 Subject: [PATCH 2/2] Fixes after feedback --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 5c5a3d30..2cb1bd6a 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -27,8 +27,8 @@ Options |------|-------|-------| |AIS\_USE\_CLANG\_TIDY|OFF|Run the `clang-tidy` tool| |AIS\_USE\_IWYU|OFF|Run the `include-what-you-use` tool| -|BUILD\_AIS\_DOCS|OFF|Build API documentation| -|BUILD\_AISCP|ON|Build `aiscp` example program (OFF for NVIDIA)| +|BUILD\_AIS\_DOCS|OFF|Build API documentation (requires Doxygen)| +|BUILD\_AISCP|ON|Build `aiscp` example program (OFF if no hipFile)| |BUILD\_CODE\_COVERAGE|OFF|Generate code coverage information when tests are run| |BUILD\_HIPFILE|ON|Build the hipFile library| |BUILD\_ROCFILE|ON|Build the rocFile library (AMD only, OFF for NVIDIA)|