aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2023-07-03 19:00:12 +0300
committerBrent Cook <busterb@gmail.com>2023-07-03 19:00:12 +0300
commit7179a01c454a997ad884cba3d2cd1804989c6adc (patch)
treead49b6cdc3fbc3e07803a467476b5b384d4fc897 /tests
parent33b2c49c9bde6aff3f8c460e46007fd9301e1dbf (diff)
downloadportable-7179a01c454a997ad884cba3d2cd1804989c6adc.tar.gz
portable-7179a01c454a997ad884cba3d2cd1804989c6adc.tar.bz2
portable-7179a01c454a997ad884cba3d2cd1804989c6adc.zip
flip logic around
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 1828f0f..7a7e391 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -599,9 +599,12 @@ add_test(sha_test sha_test)
599if(NOT CMAKE_SYSTEM_NAME MATCHES "WindowsStore") 599if(NOT CMAKE_SYSTEM_NAME MATCHES "WindowsStore")
600 set(SIGNERTEST_SRC signertest.c) 600 set(SIGNERTEST_SRC signertest.c)
601 check_function_exists(pipe2 HAVE_PIPE2) 601 check_function_exists(pipe2 HAVE_PIPE2)
602 if(!HAVE_PIPE2) 602 if(HAVE_PIPE2)
603 add_definitions(-DHAVE_PIPE2)
604 else()
603 set(SIGNERTEST_SRC ${SIGNERTEST_SRC} compat/pipe2.c) 605 set(SIGNERTEST_SRC ${SIGNERTEST_SRC} compat/pipe2.c)
604 endif() 606 endif()
607
605 set_source_files_properties(signertest.c PROPERTIES COMPILE_FLAGS 608 set_source_files_properties(signertest.c PROPERTIES COMPILE_FLAGS
606 -DCERTSDIR=\\"${CMAKE_CURRENT_SOURCE_DIR}\\") 609 -DCERTSDIR=\\"${CMAKE_CURRENT_SOURCE_DIR}\\")
607 add_executable(signertest ${SIGNERTEST_SRC}) 610 add_executable(signertest ${SIGNERTEST_SRC})