From 7917523c96397cd9dba75c512429e9312bc3554d Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Tue, 9 May 2017 00:35:05 -0700 Subject: [PATCH] cmake: build static MSVCRT by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 42e3ba4b9..e1e4832de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ endif() # to configure the options specify them in in the command line or change them in the cmake UI. # Don't edit the makefile! -option(CAPSTONE_BUILD_STATIC_RUNTIME "Embed static runtime" OFF) +option(CAPSTONE_BUILD_STATIC_RUNTIME "Embed static runtime" ON) option(CAPSTONE_BUILD_STATIC "Build static library" ON) option(CAPSTONE_BUILD_SHARED "Build shared library" ON) option(CAPSTONE_BUILD_DIET "Build diet library" OFF)