summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-03 05:03:45 -0700
committerirungentoo <irungentoo@gmail.com>2013-08-03 05:03:45 -0700
commitc01b87ef2b4496971dff7cd28392b2bd290e005e (patch)
tree2fb789877e4b6231e73d9de5fa7ed4a5f73d1c54
parentdc8e188f3034e51a77f09aeac3eb23b988f62c71 (diff)
parent5ea6b58ec4ee9874d7190dc714d505cca48603c0 (diff)
Merge pull request #282 from bakwc/master
Curses dependence added to CMake
-rwxr-xr-xCMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bf709e72..ed934c01 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,6 +2,10 @@ cmake_minimum_required(VERSION 2.6.0)
2 2
3set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) 3set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
4 4
5if(UNIX)
6 find_package(Curses REQUIRED)
7endif()
8
5if(NOT WIN32) 9if(NOT WIN32)
6 option(USE_NACL "Use NaCl library instead of libsodium") 10 option(USE_NACL "Use NaCl library instead of libsodium")
7endif() 11endif()