init: disable the Makefile override for debug configurations

This isn't needed quite so much because of CLion's new Ninja support
This commit is contained in:
Danny Robson 2019-10-21 12:47:54 +11:00
parent 2d44eae66e
commit d29c4023a2

View File

@ -13,8 +13,8 @@ OPTIONS = {
# profile
'debug': {
'vars': {'CMAKE_BUILD_TYPE': 'Debug', 'LTO': 'OFF'},
'args': ['-G', '"Unix Makefiles"'],
'build': [ "make", f"-j{multiprocessing.cpu_count()}" ],
#'args': ['-G', '"Unix Makefiles"'],
#'build': [ "make", f"-j{multiprocessing.cpu_count()}" ],
},
'release': {'vars': {'CMAKE_BUILD_TYPE': 'Release', 'LTO': 'ON'}},