diff options
Diffstat (limited to 'ssl/CMakeLists.txt')
-rw-r--r-- | ssl/CMakeLists.txt | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index bdcfbb2..637e0f0 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt | |||
@@ -1,3 +1,18 @@ | |||
1 | # | ||
2 | # Copyright (c) 2014 Brent Cook | ||
3 | # | ||
4 | # Permission to use, copy, modify, and distribute this software for any | ||
5 | # purpose with or without fee is hereby granted, provided that the above | ||
6 | # copyright notice and this permission notice appear in all copies. | ||
7 | # | ||
8 | # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
9 | # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
10 | # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
11 | # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
12 | # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
13 | # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
14 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
15 | |||
1 | set( | 16 | set( |
2 | SSL_SRC | 17 | SSL_SRC |
3 | bio_ssl.c | 18 | bio_ssl.c |
@@ -117,10 +132,12 @@ elseif(HOST_ARM) | |||
117 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/arm/) | 132 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/arm/) |
118 | elseif(HOST_I386) | 133 | elseif(HOST_I386) |
119 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/i386/) | 134 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/i386/) |
135 | elseif(HOST_LOONGARCH64) | ||
136 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/loongarch64) | ||
120 | elseif(HOST_MIPS64) | 137 | elseif(HOST_MIPS64) |
121 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/mips64) | 138 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/mips64) |
122 | elseif(HOST_MIPS) | 139 | elseif(HOST_MIPS) |
123 | # XXX - can this go away? the directory doesn't exist... | 140 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/mips) |
124 | elseif(HOST_POWERPC) | 141 | elseif(HOST_POWERPC) |
125 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/powerpc) | 142 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/powerpc) |
126 | elseif(HOST_POWERPC64) | 143 | elseif(HOST_POWERPC64) |