Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-10-06 00:46:34 +0400
committerVicent Marti <tanoku@gmail.com>2011-10-06 00:46:34 +0400
commitd3fb6a81c3333805c551c9d0995db67cb57f3ebf (patch)
treef80f627da5ca2bc375de3a4fe302221d3345e060
parentdd3fd68266353c626f435e4d629571bcc0c095c4 (diff)
cmake: Set the old test suite as default for the release
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a65ba3a2c..795a5851a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -48,8 +48,8 @@ SET(INSTALL_INC include CACHE PATH "Where to install headers to.")
OPTION (BUILD_SHARED_LIBS "Build Shared Library (OFF for Static)" ON)
OPTION (THREADSAFE "Build libgit2 as threadsafe" OFF)
OPTION (STDCALL "Buildl libgit2 with the __stdcall convention (Windows)" ON)
-OPTION (BUILD_TESTS "Build Tests" OFF)
-OPTION (BUILD_CLAY "Build Tests using the Clay suite" ON)
+OPTION (BUILD_TESTS "Build Tests" ON)
+OPTION (BUILD_CLAY "Build Tests using the Clay suite" OFF)
# Platform specific compilation flags
IF (MSVC)