Change CMakeLists.txt to two-space indent.
find -name CMakeLists.txt -type f | xargs sed -e 's/\t/ /g' -i
Change-Id: I01636b1849c00ba918f48828252492d99b0403ac
diff --git a/ssl/test/CMakeLists.txt b/ssl/test/CMakeLists.txt
index ea7b9ed..9992360 100644
--- a/ssl/test/CMakeLists.txt
+++ b/ssl/test/CMakeLists.txt
@@ -1,16 +1,16 @@
include_directories(../../include)
add_executable(
- bssl_shim
+ bssl_shim
- async_bio.cc
- bssl_shim.cc
- malloc.cc
- packeted_bio.cc
- test_config.cc
+ async_bio.cc
+ bssl_shim.cc
+ malloc.cc
+ packeted_bio.cc
+ test_config.cc
)
target_link_libraries(bssl_shim ssl crypto)
if (NOT APPLE AND NOT WIN32)
- target_link_libraries(bssl_shim dl)
+ target_link_libraries(bssl_shim dl)
endif()