Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-01-29 03:37:10 +0300
committerAdam Langley <agl@google.com>2015-01-29 03:37:10 +0300
commit4a0f0c4910e20705282166da10943d6eed5a0d66 (patch)
tree27005768efecc155fe8e341aec135977c235630c /crypto/rc4
parent2e38008558bc77e97bc97758df61d6244ea658a3 (diff)
Change CMakeLists.txt to two-space indent.
find -name CMakeLists.txt -type f | xargs sed -e 's/\t/ /g' -i Change-Id: I01636b1849c00ba918f48828252492d99b0403ac
Diffstat (limited to 'crypto/rc4')
-rw-r--r--crypto/rc4/CMakeLists.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/crypto/rc4/CMakeLists.txt b/crypto/rc4/CMakeLists.txt
index 9862af29..fe2d0c65 100644
--- a/crypto/rc4/CMakeLists.txt
+++ b/crypto/rc4/CMakeLists.txt
@@ -1,29 +1,29 @@
include_directories(. .. ../../include)
if (${ARCH} STREQUAL "x86_64")
- set(
- RC4_ARCH_SOURCES
+ set(
+ RC4_ARCH_SOURCES
- rc4-x86_64.${ASM_EXT}
- rc4-md5-x86_64.${ASM_EXT}
- )
+ rc4-x86_64.${ASM_EXT}
+ rc4-md5-x86_64.${ASM_EXT}
+ )
endif()
if (${ARCH} STREQUAL "x86")
- set(
- RC4_ARCH_SOURCES
+ set(
+ RC4_ARCH_SOURCES
- rc4-586.${ASM_EXT}
- )
+ rc4-586.${ASM_EXT}
+ )
endif()
add_library(
- rc4
+ rc4
- OBJECT
+ OBJECT
- rc4.c
- ${RC4_ARCH_SOURCES}
+ rc4.c
+ ${RC4_ARCH_SOURCES}
)
perlasm(rc4-x86_64.${ASM_EXT} asm/rc4-x86_64.pl)