From a6e958ba692231992787f56861098992c5b90866 Mon Sep 17 00:00:00 2001 From: Silarn Date: Wed, 22 May 2019 02:04:35 -0500 Subject: [PATCH] Set optimization for release builds --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 83b7455..3ce1e49 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) -ADD_COMPILE_OPTIONS($<$:/MP>) +ADD_COMPILE_OPTIONS($<$:/MP> $<$:$<$:/O2>> $<$:$<$:/O2>>) SET(PROJ_NAME githubpp) PROJECT(${PROJ_NAME})