diff options
Diffstat (limited to 'cmake/check_reqs.cmake')
-rw-r--r-- | cmake/check_reqs.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/check_reqs.cmake b/cmake/check_reqs.cmake index 8f41285..58fb05d 100644 --- a/cmake/check_reqs.cmake +++ b/cmake/check_reqs.cmake @@ -6,9 +6,9 @@ if(${nacl_required}) message(FATAL_ERROR "NaCl is not available, but a selected module needs it") endif() - if(USE_LIBSODIUM) + if(ENABLE_LIBSODIUM) set(HAVE_LIBSODIUM TRUE) - endif(USE_LIBSODIUM) + endif(ENABLE_LIBSODIUM) else(${nacl_required}) set(NACL_INCLUDE_DIRS "") set(NACL_CFLAGS_OTHER "") |