From d0cd1dc5eca1691be09000ca5a1ea4863edf4b6a Mon Sep 17 00:00:00 2001 From: fumiama Date: Wed, 19 May 2021 23:03:01 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=B8=BARelease?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 32/CMakeLists.txt | 1 + 64/CMakeLists.txt | 1 + CMakeLists.txt | 1 + 3 files changed, 3 insertions(+) diff --git a/32/CMakeLists.txt b/32/CMakeLists.txt index 41f6102..b36dfeb 100644 --- a/32/CMakeLists.txt +++ b/32/CMakeLists.txt @@ -1,5 +1,6 @@ cmake_minimum_required(VERSION 3.0.0) project(base1432 VERSION 2.0) +SET(CMAKE_BUILD_TYPE "Release") add_library(base1432 STATIC base14.c) add_library(base14 SHARED base14.c) diff --git a/64/CMakeLists.txt b/64/CMakeLists.txt index 13fc2fc..042a3ac 100644 --- a/64/CMakeLists.txt +++ b/64/CMakeLists.txt @@ -1,5 +1,6 @@ cmake_minimum_required(VERSION 3.0.0) project(base1464 VERSION 2.0) +SET(CMAKE_BUILD_TYPE "Release") add_library(base1464 STATIC base14.c) add_library(base14 SHARED base14.c) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2864b6f..8cff5df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,6 @@ cmake_minimum_required(VERSION 3.0.0) project(base16384 VERSION 2.0) +SET(CMAKE_BUILD_TYPE "Release") add_executable(base16384 base16384.c)