From 99eb9822b4dfa67f65674eac92f1371dc4be9d31 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 17 Jan 2020 23:53:16 +0300 Subject: support all 4 cmake default configurations --- cmake/build/build.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmake/build/build.py') diff --git a/cmake/build/build.py b/cmake/build/build.py index e256b72..695489b 100755 --- a/cmake/build/build.py +++ b/cmake/build/build.py @@ -55,6 +55,8 @@ def _run_cmake(cmake_args): class Configuration(Enum): DEBUG = 'Debug' + MINSIZEREL = 'MinSizeRel' + RELWITHDEBINFO = 'RelWithDebInfo' RELEASE = 'Release' def __str__(self): -- cgit v1.2.3