summaryrefslogtreecommitdiff
path: root/templates/vc7libexe.mpt
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-11-04 12:22:54 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-11-04 12:22:54 +0000
commit6a00e0141060342c2bc011a2e47ccb3e85264e5b (patch)
tree42e57fcfbc0b2cccb01a1dd8db1fa51ff1c2039a /templates/vc7libexe.mpt
parentda99effcf978b0f8b7619c7e47774b596ec6c1eb (diff)
downloadMPC-6a00e0141060342c2bc011a2e47ccb3e85264e5b.tar.gz
ChangeLogTag: Tue Nov 4 06:20:18 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'templates/vc7libexe.mpt')
-rw-r--r--templates/vc7libexe.mpt55
1 files changed, 55 insertions, 0 deletions
diff --git a/templates/vc7libexe.mpt b/templates/vc7libexe.mpt
new file mode 100644
index 00000000..4bbbb281
--- /dev/null
+++ b/templates/vc7libexe.mpt
@@ -0,0 +1,55 @@
+conditional_include "idl_compiler_win32"
+conditional_include "common"
+
+configurations = "Static Release" "Static Debug"
+type_is_binary = 1
+common_defines = WIN32 _CONSOLE
+configuration_type = 1
+subsystem = 1
+pdb = 1
+
+Static Release {
+ optimize = 3
+ defines = NDEBUG
+ output_dir = Static_Release
+ intermediate_dir = Static_Release
+ lib_modifier = s
+ need_staticflags = 1
+ runtime_library = 2
+}
+
+Static Debug {
+ optimize = 0
+ debug = 1
+ defines = _DEBUG
+ output_dir = Static_Debug
+ intermediate_dir = Static_Debug
+ lib_modifier = sd
+ need_staticflags = 1
+ runtime_library = 3
+}
+
+Static MFC Release {
+ optimize = 3
+ defines = NDEBUG _AFXDLL
+ output_dir = Static_MFC_Release
+ intermediate_dir = Static_MFC_Release
+ lib_modifier = mfcs
+ need_staticflags = 1
+ runtime_library = 2
+ use_mfc = 2
+}
+
+Static MFC Debug {
+ optimize = 0
+ debug = 1
+ defines = _DEBUG _AFXDLL
+ output_dir = Static_MFC_Debug
+ intermediate_dir = Static_MFC_Debug
+ lib_modifier = mfcsd
+ need_staticflags = 1
+ runtime_library = 3
+ use_mfc = 2
+}
+
+conditional_include "vcfullmacros"