diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2017-01-28 03:40:38 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2017-01-28 03:40:38 +0900 |
commit | 58eb645fdba229c1b214a0ac14f7365df171b62f (patch) | |
tree | 062683488b56d8a9f62a2d5772aff39edebb4268 /tests/CMakeLists.txt | |
parent | cb57534af8ce4cacd69a3edcd42bb8a6bcd0b40b (diff) | |
download | portable-58eb645fdba229c1b214a0ac14f7365df171b62f.tar.gz portable-58eb645fdba229c1b214a0ac14f7365df171b62f.tar.bz2 portable-58eb645fdba229c1b214a0ac14f7365df171b62f.zip |
Copy libc compat files rather than adding into the repository
- remove the CP_LIBC files from repo
- move tests/memmem.c to tests/compat/
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r-- | tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d7b73b9..91dc99a 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -156,7 +156,7 @@ if(NOT CMAKE_HOST_WIN32) | |||
156 | if(HAVE_MEMMEM) | 156 | if(HAVE_MEMMEM) |
157 | add_executable(explicit_bzero explicit_bzero.c) | 157 | add_executable(explicit_bzero explicit_bzero.c) |
158 | else() | 158 | else() |
159 | add_executable(explicit_bzero explicit_bzero.c memmem.c) | 159 | add_executable(explicit_bzero explicit_bzero.c compat/memmem.c) |
160 | endif() | 160 | endif() |
161 | target_link_libraries(explicit_bzero ${TESTS_LIBS}) | 161 | target_link_libraries(explicit_bzero ${TESTS_LIBS}) |
162 | add_test(explicit_bzero explicit_bzero) | 162 | add_test(explicit_bzero explicit_bzero) |