summaryrefslogtreecommitdiff
path: root/templates/vc8exe.mpt
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-05-16 16:41:30 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-05-16 16:41:30 +0000
commit0ef5e7ad0ee429288fe764a289f1414e9c41a3f8 (patch)
treeca26d7a27add93d0f589cd14e27c15af019f09fe /templates/vc8exe.mpt
parent987bae628b60ded8ca0aca53d305392642ee0fa3 (diff)
downloadMPC-0ef5e7ad0ee429288fe764a289f1414e9c41a3f8.tar.gz
ChangeLogTag: Mon May 16 11:36:29 2005 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'templates/vc8exe.mpt')
-rw-r--r--templates/vc8exe.mpt56
1 files changed, 56 insertions, 0 deletions
diff --git a/templates/vc8exe.mpt b/templates/vc8exe.mpt
new file mode 100644
index 00000000..795bf0e9
--- /dev/null
+++ b/templates/vc8exe.mpt
@@ -0,0 +1,56 @@
+// -*- MPC -*-
+// $Id$
+
+conditional_include "common"
+conditional_include "windowscommon"
+
+configurations = Release Debug
+common_defines = WIN32 _CONSOLE _CRT_SECURE_NO_DEPRECATE
+ConfigurationType = 1
+SubSystem = 1
+Detect64BitPortabilityProblems = false
+MinimalRebuild = false
+
+Release {
+ LinkIncremental = 1
+ optimize = 2
+ defines = NDEBUG
+ output_dir = Release
+ intermediate_dir = Release
+ RuntimeLibrary = 2
+}
+
+Debug {
+ defines = _DEBUG
+ output_dir = .
+ intermediate_dir = Debug
+ lib_modifier = d
+ RuntimeLibrary = 3
+}
+
+MFC Release {
+ LinkIncremental = 1
+ optimize = 2
+ common_defines = WIN32 _WINDOWS
+ defines = NDEBUG _AFXDLL
+ output_dir = MFC_Release
+ intermediate_dir = MFC_Release
+ lib_modifier = mfc
+ RuntimeLibrary = 2
+ UseOfMFC = 2
+ unicode_mfc_entry = wWinMainCRTStartup
+}
+
+MFC Debug {
+ common_defines = WIN32 _WINDOWS
+ defines = _DEBUG _AFXDLL
+ output_dir = MFC_Debug
+ intermediate_dir = MFC_Debug
+ lib_modifier = mfcd
+ RuntimeLibrary = 3
+ UseOfMFC = 2
+ unicode_mfc_entry = wWinMainCRTStartup
+}
+
+conditional_include "vcpartialmacros"
+conditional_include "user_vc8exe"