aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/SciTE.properties
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-09-05 02:14:21 +0000
committernyamatongwe <devnull@localhost>2000-09-05 02:14:21 +0000
commit6f93953d62a1f7a4b3c28b15705ec91c42d554b5 (patch)
tree689b11a295d0615a3e4e64906ec50e69e8d7ce6f /win32/SciTE.properties
parentcda6b55ff6a18e5ad94efc5ae9ee601a1e06bde8 (diff)
downloadscintilla-mirror-6f93953d62a1f7a4b3c28b15705ec91c42d554b5.tar.gz
Support for DEBUG or NDEBUG defines to make assert work.
Diffstat (limited to 'win32/SciTE.properties')
-rw-r--r--win32/SciTE.properties18
1 files changed, 11 insertions, 7 deletions
diff --git a/win32/SciTE.properties b/win32/SciTE.properties
index 446aad209..d90f1971a 100644
--- a/win32/SciTE.properties
+++ b/win32/SciTE.properties
@@ -1,7 +1,11 @@
-command.build.scintilla.mak=nmake -f $(FileNameExt)
-command.name.1.scintilla.mak=nmake clean
-command.1.scintilla.mak=nmake -f $(FileNameExt) clean
-command.name.2.scintilla.mak=Borland Make
-command.2.scintilla.mak=make -f $(FileNameExt)
-command.name.3.scintilla.mak=make clean
-command.3.scintilla.mak=make -f $(FileNameExt) clean
+command.build.*.mak=nmake -f $(FileNameExt)
+command.name.1.*.mak=nmake clean
+command.1.*.mak=nmake -f $(FileNameExt) clean
+command.name.2.*.mak=Borland Make
+command.2.*.mak=make -f $(FileNameExt)
+command.name.3.*.mak=make clean
+command.3.*.mak=make -f $(FileNameExt) clean
+command.name.4.*.mak=make debug
+command.4.*.mak=make DEBUG=1 -f $(FileNameExt)
+command.name.5.*.mak=nmake debug
+command.5.*.mak=nmake DEBUG=1 -f $(FileNameExt)