Merge pull request #37 from jwillemsen/master
[MPC.git] / config / wireshark.mpb
bloba29b6432372712e0f89b615df0bc034814bcdec0
1 project : glib {
2   requires      += wireshark
4   // Unfortunately Wireshark does not install headers for plugin
5   // development; instead we rely on the source distribution:
6   includes      += $(WIRESHARK_SRC)
8   specific(vc71) {
9     macros      += MSC_VER_REQUIRED=1310
10   }
11   specific(vc8) {
12     macros      += MSC_VER_REQUIRED=1400
13   }
14   specific(vc9) {
15     macros      += MSC_VER_REQUIRED=1500
16   }
17   specific(vc10) {
18     macros      += MSC_VER_REQUIRED=1600
19   }
20   specific(vc11) {
21     macros      += MSC_VER_REQUIRED=1700
22   }
23   specific(vc12) {
24     macros      += MSC_VER_REQUIRED=1800
25   }
26   specific(vc14) {
27     macros      += MSC_VER_REQUIRED=1900
28   }
29   specific(vs2017) {
30     macros      += MSC_VER_REQUIRED=1910
31   }
32   verbatim(nmake, top) {
33     include $(WIRESHARK_SRC)/config.nmake
34   }
36   specific(prop:windows) {
37     libpaths    += $(WIRESHARK_SRC)/wiretap $(WIRESHARK_SRC)/epan
38     lit_libs    += wiretap-$(WIRETAP_VERSION) libwireshark
39   } else {
40     libpaths    += $(WIRESHARK_SRC)/wiretap/.libs $(WIRESHARK_SRC)/epan/.libs
41     lit_libs    += wiretap wireshark
42   }