summaryrefslogtreecommitdiff
path: root/templates/vc8lib.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/vc8lib.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/vc8lib.mpt')
-rw-r--r--templates/vc8lib.mpt51
1 files changed, 51 insertions, 0 deletions
diff --git a/templates/vc8lib.mpt b/templates/vc8lib.mpt
new file mode 100644
index 00000000..25340446
--- /dev/null
+++ b/templates/vc8lib.mpt
@@ -0,0 +1,51 @@
+// -*- MPC -*-
+// $Id$
+
+conditional_include "common"
+conditional_include "windowscommon"
+
+configurations = Release Debug
+common_defines = WIN32 _WINDOWS _CRT_SECURE_NO_DEPRECATE
+ConfigurationType = 4
+use_lib_modifier = 1
+Detect64BitPortabilityProblems = false
+MinimalRebuild = false
+
+Release {
+ optimize = 2
+ defines = NDEBUG
+ output_dir = Static_Release
+ intermediate_dir = Static_Release
+ lib_modifier = s
+ RuntimeLibrary = 2
+}
+
+Debug {
+ defines = _DEBUG
+ output_dir = Static_Debug
+ intermediate_dir = Static_Debug
+ lib_modifier = sd
+ RuntimeLibrary = 3
+}
+
+MFC Release {
+ optimize = 2
+ defines = NDEBUG
+ output_dir = Static_MFC_Release
+ intermediate_dir = Static_MFC_Release
+ lib_modifier = mfcs
+ RuntimeLibrary = 2
+ UseOfMFC = 2
+}
+
+MFC Debug {
+ defines = _DEBUG
+ output_dir = Static_MFC_Debug
+ intermediate_dir = Static_MFC_Debug
+ lib_modifier = mfcsd
+ RuntimeLibrary = 3
+ UseOfMFC = 2
+}
+
+conditional_include "vcpartialmacros"
+conditional_include "user_vc8lib"