diff options
author | Zufu Liu <unknown> | 2022-07-04 09:41:29 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2022-07-04 09:41:29 +1000 |
commit | 4c7b9d551b0304c4184fda8cb803c95a64742fbf (patch) | |
tree | 9af2f6b143a5a352e7fc96dd648973ce527e24f2 | |
parent | 3761904bb21559a5962a0b6d0a4f7ae4add16e2a (diff) | |
download | scintilla-mirror-4c7b9d551b0304c4184fda8cb803c95a64742fbf.tar.gz |
Feature [feature-requests:#1442] Faster build with multiprocessing option.
-rw-r--r-- | test/unit/test.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test.mak b/test/unit/test.mak index f75cfdbd3..99e4882c2 100644 --- a/test/unit/test.mak +++ b/test/unit/test.mak @@ -6,7 +6,7 @@ EXE = unitTest.exe INCLUDEDIRS = /I../../include /I../../src -CXXFLAGS = /EHsc /std:c++17 $(OPTIMIZATION) /nologo /D_HAS_AUTO_PTR_ETC=1 /wd 4805 $(INCLUDEDIRS) +CXXFLAGS = /MP /EHsc /std:c++17 $(OPTIMIZATION) /nologo /D_HAS_AUTO_PTR_ETC=1 /wd 4805 $(INCLUDEDIRS) # Files in this directory containing tests TESTSRC=test*.cxx |