aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/SciTE.properties
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-09-05 02:14:21 +0000
committernyamatongwe <unknown>2000-09-05 02:14:21 +0000
commit6d20c54ff42983715be4db0a9af4c03d21dd3757 (patch)
tree689b11a295d0615a3e4e64906ec50e69e8d7ce6f /win32/SciTE.properties
parent90a488667404e38f26f0e555dd7f3416842ad624 (diff)
downloadscintilla-mirror-6d20c54ff42983715be4db0a9af4c03d21dd3757.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)