https://git.reactos.org/?p=reactos.git;a=commitdiff;h=0975c5ef409ef0138f39bd6d9f6de91f00990cfb
commit 0975c5ef409ef0138f39bd6d9f6de91f00990cfb Author: Serge Gautherie <[email protected]> AuthorDate: Thu Mar 11 00:38:04 2021 +0100 Commit: GitHub <[email protected]> CommitDate: Thu Mar 11 08:38:04 2021 +0900 [ATL] CMakeLists.txt: Use a bare endif() (#3523) Addendum to 98203ce. --- sdk/lib/atl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/lib/atl/CMakeLists.txt b/sdk/lib/atl/CMakeLists.txt index d8d4c149ffb..000bd02060d 100644 --- a/sdk/lib/atl/CMakeLists.txt +++ b/sdk/lib/atl/CMakeLists.txt @@ -2,7 +2,7 @@ add_library(atl_classes INTERFACE) if(DBG) target_compile_definitions(atl_classes INTERFACE _DEBUG) -endif(DBG) +endif() target_include_directories(atl_classes INTERFACE $<$<COMPILE_LANGUAGE:CXX>:${CMAKE_CURRENT_SOURCE_DIR}>)
