summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-02-05 14:37:40 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-02-05 14:37:40 +0100
commitf2b9525671985c98f59026cde58f437eeea8d97e (patch)
tree64f334d4d88d1ae6b799cba54cbba671204c922c /config
parentffeda8bff53d248642b9db532fc7e00d724a4e63 (diff)
downloadMPC-f2b9525671985c98f59026cde58f437eeea8d97e.tar.gz
Add support for Visual Studio 2019 using Visual C++ 14.2
Diffstat (limited to 'config')
-rw-r--r--config/pin_base.mpb2
-rw-r--r--config/pintool.mpb4
-rw-r--r--config/winapp.mpb2
-rw-r--r--config/wireshark.mpb3
4 files changed, 7 insertions, 4 deletions
diff --git a/config/pin_base.mpb b/config/pin_base.mpb
index dca15a09..d583d2cb 100644
--- a/config/pin_base.mpb
+++ b/config/pin_base.mpb
@@ -13,7 +13,7 @@ project {
compile_flags += /Oy
}
- specific (vc10, vc11, vc12, vc14, vs2017) {
+ specific (vc10, vc11, vc12, vc14, vs2017, vs2019) {
runtime_library = MultiThreaded
ImageHasSafeExceptionHandlers = false
diff --git a/config/pintool.mpb b/config/pintool.mpb
index a343f7e4..e6b4bc10 100644
--- a/config/pintool.mpb
+++ b/config/pintool.mpb
@@ -41,7 +41,7 @@ feature (ia32) {
link_options += /ENTRY:Ptrace_DllMainCRTStartup@12
}
- specific (vc10, vc11, vc12, vc14, vs2017) {
+ specific (vc10, vc11, vc12, vc14, vs2017, vs2019) {
EntryPointSymbol = Ptrace_DllMainCRTStartup@12
}
}
@@ -51,7 +51,7 @@ feature (intel64) {
link_options += /ENTRY:Ptrace_DllMainCRTStartup
}
- specific (vc10, vc11, vc12, vc14, vs2017) {
+ specific (vc10, vc11, vc12, vc14, vs2017, vs2019) {
EntryPointSymbol = Ptrace_DllMainCRTStartup
}
}
diff --git a/config/winapp.mpb b/config/winapp.mpb
index 0c7a76d5..b87b3d42 100644
--- a/config/winapp.mpb
+++ b/config/winapp.mpb
@@ -5,7 +5,7 @@ project {
} else {
subsystem = 2
}
- specific(vc10, vc11, vc12, vc14, vs2017) {
+ specific(vc10, vc11, vc12, vc14, vs2017, vs2019) {
subsystem = Windows
}
}
diff --git a/config/wireshark.mpb b/config/wireshark.mpb
index 87b07612..0a8c24ef 100644
--- a/config/wireshark.mpb
+++ b/config/wireshark.mpb
@@ -29,6 +29,9 @@ project : glib {
specific(vs2017) {
macros += MSC_VER_REQUIRED=1910
}
+ specific(vs2019) {
+ macros += MSC_VER_REQUIRED=1920
+ }
verbatim(nmake, top, 1) {
include $(WIRESHARK_SRC)/config.nmake
}