diff options
Diffstat (limited to 'cmake/build/build.py')
-rwxr-xr-x | cmake/build/build.py | 2 |
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): |