aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/build/build.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-01-17 23:53:16 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-01-18 00:16:22 +0300
commit99eb9822b4dfa67f65674eac92f1371dc4be9d31 (patch)
tree47fc1f817c805479b96270c9f7425d912f540e9b /cmake/build/build.py
parentfix .clang-format (diff)
downloadcmake-common-99eb9822b4dfa67f65674eac92f1371dc4be9d31.tar.gz
cmake-common-99eb9822b4dfa67f65674eac92f1371dc4be9d31.zip
support all 4 cmake default configurations
Diffstat (limited to 'cmake/build/build.py')
-rwxr-xr-xcmake/build/build.py2
1 files changed, 2 insertions, 0 deletions
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):