From 3b68b5018e87ca259c5f5b5f6ee23b445c8fab14 Mon Sep 17 00:00:00 2001 From: Alessio M Date: Wed, 9 Sep 2020 11:55:42 +0100 Subject: [PATCH] Enable position-independent code --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8b2e89a..12ef75b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,7 @@ PROJECT(hiredis VERSION "${VERSION}") # Hiredis requires C99 SET(CMAKE_C_STANDARD 99) +set(CMAKE_POSITION_INDEPENDENT_CODE ON) SET(ENABLE_EXAMPLES OFF CACHE BOOL "Enable building hiredis examples")