From 83bbc28ad975eb6942a786f1c628858cbf2030fe Mon Sep 17 00:00:00 2001 From: Amber Lin Date: Thu, 4 Jan 2018 15:40:49 -0500 Subject: [PATCH] Update README to reflect cmake change New CMakeLists.txt sets a default module search so -DCMAKE_MODULE_PATH is no longer required in the command. Change-Id: I95189ce2f36016b7c4929239d0e512851bec5ef6 Signed-off-by: Amber Lin [ROCm/ROCR-Runtime commit: 7031a774281ca7c415c5fe38ecd758b5d5164b84] --- projects/rocr-runtime/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/rocr-runtime/README.md b/projects/rocr-runtime/README.md index 5ede88314e..2d1d4ea065 100644 --- a/projects/rocr-runtime/README.md +++ b/projects/rocr-runtime/README.md @@ -17,7 +17,7 @@ A simple cmake-based system is available for building thunk. To build the thunk ```bash mkdir -p build cd build - cmake -DCMAKE_MODULE_PATH=${PWD}/../cmake_modules .. + cmake .. make ``` @@ -26,7 +26,7 @@ If the hsakmt-roct and hsakmt-roct-dev packages are desired: ```bash mkdir -p build cd build - cmake -DCMAKE_MODULE_PATH=${PWD}/../cmake_modules .. + cmake .. make package make package-dev ```