summaryrefslogtreecommitdiff
path: root/templates/vc14exe.mpt
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2014-06-04 09:35:35 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2014-06-04 09:35:35 +0000
commitabf533c9c2890c19307c6c2678c4e950ef7e0e47 (patch)
tree959faf87391bd0de2981f4e7f19e7f8c734eb2a8 /templates/vc14exe.mpt
parentc560c1c82058526828b74b224b74a0a6bbe89bb2 (diff)
downloadMPC-abf533c9c2890c19307c6c2678c4e950ef7e0e47.tar.gz
Wed Jun 4 09:36:54 UTC 2014 Johnny Willemsen <jwillemsen@remedy.nl>
* modules/VC14ProjectCreator.pm: * modules/VC14WorkspaceCreator.pm: * templates/vc14dll.mpt: * templates/vc14exe.mpt: * templates/vc14lib.mpt: * templates/vc14libexe.mpt: * templates/vc14platforms.mpt: New files for msvc14, partly updated, not tested yet
Diffstat (limited to 'templates/vc14exe.mpt')
-rw-r--r--templates/vc14exe.mpt81
1 files changed, 81 insertions, 0 deletions
diff --git a/templates/vc14exe.mpt b/templates/vc14exe.mpt
new file mode 100644
index 00000000..02470208
--- /dev/null
+++ b/templates/vc14exe.mpt
@@ -0,0 +1,81 @@
+// -*- MPC -*-
+// $Id$
+
+conditional_include "common"
+conditional_include "windowscommon"
+
+configurations = Debug Release
+common_defines = WIN32 _CONSOLE _CRT_NONSTDC_NO_WARNINGS
+ConfigurationType = 1
+SubSystem = Console
+MinimalRebuild = false
+GenerateDebugInformation = true
+
+conditional_include "vc14platforms"
+
+Release {
+ LinkIncremental = 1
+ optimize = MaxSpeed
+ defines = NDEBUG
+ output_dir = Release
+ intermediate_dir = Release
+ EnableIntrinsicFunctions = true
+ WholeProgramOptimization = true
+}
+
+Debug {
+ debug_prj = 1
+ defines = _DEBUG
+ intermediate_dir = Debug
+ lib_modifier = d
+}
+
+Memcheck Release {
+ optimize = MaxSpeed
+ defines = NDEBUG
+ output_dir = Release
+ intermediate_dir = Release
+ BasicRuntimeChecks = 0
+ LinkIncremental = 1
+ FixedBaseAddress = 1
+ EnableIntrinsicFunctions = true
+ WholeProgramOptimization = true
+}
+
+Memcheck Debug {
+ debug_prj = 1
+ defines = _DEBUG
+ intermediate_dir = Debug
+ lib_modifier = d
+ BasicRuntimeChecks = 0
+ LinkIncremental = 1
+ FixedBaseAddress = 1
+}
+
+MFC Release {
+ LinkIncremental = 1
+ optimize = MaxSpeed
+ common_defines = WIN32 _WINDOWS
+ defines = NDEBUG _AFXDLL
+ output_dir = MFC_Release
+ intermediate_dir = MFC_Release
+ lib_modifier = mfc
+ UseOfMFC = Dynamic
+ unicode_mfc_entry = wWinMainCRTStartup
+ EnableIntrinsicFunctions = true
+ WholeProgramOptimization = true
+}
+
+MFC Debug {
+ debug_prj = 1
+ common_defines = WIN32 _WINDOWS
+ defines = _DEBUG _AFXDLL
+ output_dir = MFC_Debug
+ intermediate_dir = MFC_Debug
+ lib_modifier = mfcd
+ UseOfMFC = Dynamic
+ unicode_mfc_entry = wWinMainCRTStartup
+}
+
+conditional_include "vcpartialmacros"
+conditional_include "user_vc14exe"