diff options
-rwxr-xr-x | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index db1a426c..ed934c01 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -2,7 +2,9 @@ cmake_minimum_required(VERSION 2.6.0) | |||
2 | 2 | ||
3 | set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) | 3 | set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) |
4 | 4 | ||
5 | find_package(Curses REQUIRED) | 5 | if(UNIX) |
6 | find_package(Curses REQUIRED) | ||
7 | endif() | ||
6 | 8 | ||
7 | if(NOT WIN32) | 9 | if(NOT WIN32) |
8 | option(USE_NACL "Use NaCl library instead of libsodium") | 10 | option(USE_NACL "Use NaCl library instead of libsodium") |