From 8ac6bacf268ed8246ec5b0d421c7ccbe3ce0039e Mon Sep 17 00:00:00 2001 From: "PoYen, Chen" Date: Mon, 8 Jul 2024 10:19:31 +0000 Subject: [PATCH] Unify CMakeLists.txt coding style --- example/ck_tile/01_fmha/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/ck_tile/01_fmha/CMakeLists.txt b/example/ck_tile/01_fmha/CMakeLists.txt index 1912ded2cd..efd47f3851 100644 --- a/example/ck_tile/01_fmha/CMakeLists.txt +++ b/example/ck_tile/01_fmha/CMakeLists.txt @@ -89,7 +89,7 @@ else() endif() # conditionally enable call to the fwd_appendkv API in fmha_fwd example -if ("fwd_appendkv" IN_LIST FMHA_FWD_ENABLE_APIS) +if("fwd_appendkv" IN_LIST FMHA_FWD_ENABLE_APIS) list(APPEND EXAMPLE_FMHA_FWD_COMPILE_OPTIONS -DCK_TILE_FMHA_FWD_APPENDKV_API=1) else() list(APPEND EXAMPLE_FMHA_FWD_COMPILE_OPTIONS -DCK_TILE_FMHA_FWD_APPENDKV_API=0)