format if() endif()

This commit is contained in:
Xiaoxi Wang 2022-09-06 10:26:54 -07:00 committed by Aaron Molitor
parent 12d6dc8589
commit 83bb9efa8d
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
if (NOT WIN32)
if(NOT WIN32)
add_flow_target(EXECUTABLE NAME authz_tls_unittest SRCS AuthzTlsTest.actor.cpp)
target_link_libraries(authz_tls_unittest PRIVATE flow fdbrpc fmt::fmt)
if (NOT OPEN_FOR_IDE)
if(NOT OPEN_FOR_IDE)
add_test(NAME authorization_tls_unittest
COMMAND $<TARGET_FILE:authz_tls_unittest>)
endif ()
endif ()
endif()
endif()