[ATL] CMakeLists.txt: Use a bare endif() (#3523)

Addendum to 98203ce.
This commit is contained in:
Serge Gautherie 2021-03-11 00:38:04 +01:00 committed by GitHub
parent 1952e5b795
commit 0975c5ef40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}>)