Changeset 4704
- Timestamp:
- Jan 16, 2014 5:30:46 AM (11 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 1 deleted
- 30 edited
- 138 copied
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk
- Property svn:mergeinfo changed
/pjproject/branches/projects/pjsua2 (added) merged: 4595,4597-4598,4600,4608,4619,4631,4638-4640,4642-4648,4654-4655,4657-4660,4662-4666,4668-4687,4689-4693,4696-4699,4702
- Property svn:mergeinfo changed
-
pjproject/trunk/build.mak.in
r4701 r4704 173 173 -I$(PJDIR)/pjsip/include 174 174 export APP_CXXFLAGS := $(APP_CFLAGS) 175 # x x x x x x x x x x x x x x x x x x x x x x x x 176 # 177 # FIX THIS 178 # 179 # pjsua2 is c++ library hence maybe needs to be put in separate 180 # variables. it will also require -lstdc++ or -static-libstdc++ 181 # x x x x x x x x x x x x x x x x x x x x x x x x 175 182 export APP_LDFLAGS := -L$(PJDIR)/pjlib/lib\ 176 183 -L$(PJDIR)/pjlib-util/lib\ … … 180 187 -L$(PJDIR)/third_party/lib\ 181 188 $(PJ_VIDEO_LDFLAGS) \ 189 -static-libstdc++ \ 182 190 @LDFLAGS@ 183 export APP_LIB_FILES = $(PJ_DIR)/pjsip/lib/libpjsua-$(LIB_SUFFIX) \ 191 192 # x x x x x x x x x x x x x x x x x x x x x x x x 193 # 194 # FIX THIS 195 # 196 # pjsua2 is c++ library hence maybe needs to be put in separate 197 # variables. it will also require -lstdc++ 198 # x x x x x x x x x x x x x x x x x x x x x x x x 199 export APP_LIB_FILES = \ 200 $(PJ_DIR)/pjsip/lib/libpjsua2-$(LIB_SUFFIX) \ 201 $(PJ_DIR)/pjsip/lib/libpjsua-$(LIB_SUFFIX) \ 184 202 $(PJ_DIR)/pjsip/lib/libpjsip-ua-$(LIB_SUFFIX) \ 185 203 $(PJ_DIR)/pjsip/lib/libpjsip-simple-$(LIB_SUFFIX) \ -
pjproject/trunk/configure-android
r4651 r4704 102 102 export LIBS="${LIBS} -lc -lgcc" 103 103 export CFLAGS="${NDK_CFLAGS} ${CFLAGS}" 104 export CPPFLAGS="${CFLAGS} "105 export CXXFLAGS="${NDK_CXXFLAGS} "104 export CPPFLAGS="${CFLAGS} -fexceptions -frtti" 105 export CXXFLAGS="${NDK_CXXFLAGS} -fexceptions -frtti" 106 106 107 107 else … … 128 128 export LIBS="${LIBS} -lc -lgcc" 129 129 export CFLAGS="${CFLAGS} -I${ANDROID_SYSROOT}/usr/include" 130 export CPPFLAGS="${CFLAGS} "131 export CXXFLAGS="${CXXFLAGS} -shared --sysroot=${ANDROID_SYSROOT} "130 export CPPFLAGS="${CFLAGS} -fexceptions -frtti" 131 export CXXFLAGS="${CXXFLAGS} -shared --sysroot=${ANDROID_SYSROOT} -fexceptions -frtti" 132 132 133 133 fi 134 135 # C++ STL 136 # Note: STL for pjsua2 sample app is specified in pjsip-apps/src/swig/java/android/jni/Application.mk 137 138 # gnustl 139 STDCPP_TC_VER=`ls -d ${ANDROID_NDK_ROOT}/sources/cxx-stl/gnu-libstdc++/[0-9]* | sort -gr | head -1` 140 STDCPP_CFLAGS="-I${STDCPP_TC_VER}/include -I${STDCPP_TC_VER}/libs/armeabi/include" 141 STDCPP_LIBS="${ANDROID_SYSROOT}/usr/lib/crtbegin_so.o -lgnustl_static" 142 STDCPP_LDFLAGS="-L${STDCPP_TC_VER}/libs/armeabi" 143 144 # stlport 145 #STDCPP_CFLAGS="-I${ANDROID_NDK_ROOT}/sources/cxx-stl/stlport/stlport" 146 #STDCPP_LIBS="${ANDROID_SYSROOT}/usr/lib/crtbegin_so.o -lstlport_static -ldl" 147 #STDCPP_LDFLAGS="-L${ANDROID_NDK_ROOT}/sources/cxx-stl/stlport/libs/armeabi" 148 149 export CFLAGS="${CFLAGS} ${STDCPP_CFLAGS}" 150 export LIBS="${STDCPP_LIBS} ${LIBS}" 151 export LDFLAGS="${LDFLAGS} ${STDCPP_LDFLAGS}" 134 152 135 153 # Print settings -
pjproject/trunk/pjlib-util/build/Makefile
r4656 r4704 39 39 base64.o cli.o cli_console.o cli_telnet.o crc32.o errno.o dns.o \ 40 40 dns_dump.o dns_server.o getopt.o hmac_md5.o hmac_sha1.o \ 41 http_client.o md5.o pcap.o resolver.o scanner.o sha1.o \41 http_client.o json.o md5.o pcap.o resolver.o scanner.o sha1.o \ 42 42 srv_resolver.o string.o stun_simple.o \ 43 43 stun_simple_client.o xml.o … … 51 51 export UTIL_TEST_SRCDIR = ../src/pjlib-util-test 52 52 export UTIL_TEST_OBJS += xml.o encryption.o stun.o resolver_test.o test.o \ 53 http_client.o53 json_test.o http_client.o 54 54 export UTIL_TEST_CFLAGS += $(_CFLAGS) 55 55 export UTIL_TEST_CXXFLAGS += $(_CXXFLAGS) -
pjproject/trunk/pjlib-util/build/pjlib_util.vcproj
r4537 r4704 286 286 </Configuration> 287 287 <Configuration 288 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 289 ConfigurationType="4" 290 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 291 ATLMinimizesCRunTimeLibraryUsage="false" 292 CharacterSet="1" 293 > 294 <Tool 295 Name="VCPreBuildEventTool" 296 /> 297 <Tool 298 Name="VCCustomBuildTool" 299 /> 300 <Tool 301 Name="VCXMLDataGeneratorTool" 302 /> 303 <Tool 304 Name="VCWebServiceProxyGeneratorTool" 305 /> 306 <Tool 307 Name="VCMIDLTool" 308 /> 309 <Tool 310 Name="VCCLCompilerTool" 311 ExecutionBucket="7" 312 AdditionalIncludeDirectories="../include,../../pjlib/include" 313 PreprocessorDefinitions="_LIB;" 314 PrecompiledHeaderFile="" 315 /> 316 <Tool 317 Name="VCManagedResourceCompilerTool" 318 /> 319 <Tool 320 Name="VCResourceCompilerTool" 321 /> 322 <Tool 323 Name="VCPreLinkEventTool" 324 /> 325 <Tool 326 Name="VCLibrarianTool" 327 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib" 328 /> 329 <Tool 330 Name="VCALinkTool" 331 /> 332 <Tool 333 Name="VCXDCMakeTool" 334 /> 335 <Tool 336 Name="VCBscMakeTool" 337 /> 338 <Tool 339 Name="VCCodeSignTool" 340 /> 341 <Tool 342 Name="VCPostBuildEventTool" 343 /> 344 <DeploymentTool 345 ForceDirty="-1" 346 RemoteDirectory="" 347 RegisterOutput="0" 348 AdditionalFiles="" 349 /> 350 <DebuggerTool 351 /> 352 </Configuration> 353 <Configuration 354 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 355 ConfigurationType="4" 356 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 357 ATLMinimizesCRunTimeLibraryUsage="false" 358 CharacterSet="1" 359 > 360 <Tool 361 Name="VCPreBuildEventTool" 362 /> 363 <Tool 364 Name="VCCustomBuildTool" 365 /> 366 <Tool 367 Name="VCXMLDataGeneratorTool" 368 /> 369 <Tool 370 Name="VCWebServiceProxyGeneratorTool" 371 /> 372 <Tool 373 Name="VCMIDLTool" 374 /> 375 <Tool 376 Name="VCCLCompilerTool" 377 ExecutionBucket="7" 378 AdditionalIncludeDirectories="../include,../../pjlib/include" 379 PreprocessorDefinitions="_LIB;" 380 PrecompiledHeaderFile="" 381 /> 382 <Tool 383 Name="VCManagedResourceCompilerTool" 384 /> 385 <Tool 386 Name="VCResourceCompilerTool" 387 /> 388 <Tool 389 Name="VCPreLinkEventTool" 390 /> 391 <Tool 392 Name="VCLibrarianTool" 393 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib" 394 /> 395 <Tool 396 Name="VCALinkTool" 397 /> 398 <Tool 399 Name="VCXDCMakeTool" 400 /> 401 <Tool 402 Name="VCBscMakeTool" 403 /> 404 <Tool 405 Name="VCCodeSignTool" 406 /> 407 <Tool 408 Name="VCPostBuildEventTool" 409 /> 410 <DeploymentTool 411 ForceDirty="-1" 412 RemoteDirectory="" 413 RegisterOutput="0" 414 AdditionalFiles="" 415 /> 416 <DebuggerTool 417 /> 418 </Configuration> 419 <Configuration 288 420 Name="Debug|Win32" 289 421 ConfigurationType="4" … … 536 668 </Configuration> 537 669 <Configuration 670 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 671 ConfigurationType="4" 672 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 673 ATLMinimizesCRunTimeLibraryUsage="false" 674 CharacterSet="1" 675 > 676 <Tool 677 Name="VCPreBuildEventTool" 678 /> 679 <Tool 680 Name="VCCustomBuildTool" 681 /> 682 <Tool 683 Name="VCXMLDataGeneratorTool" 684 /> 685 <Tool 686 Name="VCWebServiceProxyGeneratorTool" 687 /> 688 <Tool 689 Name="VCMIDLTool" 690 /> 691 <Tool 692 Name="VCCLCompilerTool" 693 ExecutionBucket="7" 694 AdditionalIncludeDirectories="../include,../../pjlib/include" 695 PreprocessorDefinitions="_LIB;" 696 PrecompiledHeaderFile="" 697 /> 698 <Tool 699 Name="VCManagedResourceCompilerTool" 700 /> 701 <Tool 702 Name="VCResourceCompilerTool" 703 /> 704 <Tool 705 Name="VCPreLinkEventTool" 706 /> 707 <Tool 708 Name="VCLibrarianTool" 709 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib" 710 /> 711 <Tool 712 Name="VCALinkTool" 713 /> 714 <Tool 715 Name="VCXDCMakeTool" 716 /> 717 <Tool 718 Name="VCBscMakeTool" 719 /> 720 <Tool 721 Name="VCCodeSignTool" 722 /> 723 <Tool 724 Name="VCPostBuildEventTool" 725 /> 726 <DeploymentTool 727 ForceDirty="-1" 728 RemoteDirectory="" 729 RegisterOutput="0" 730 AdditionalFiles="" 731 /> 732 <DebuggerTool 733 /> 734 </Configuration> 735 <Configuration 736 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 737 ConfigurationType="4" 738 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 739 ATLMinimizesCRunTimeLibraryUsage="false" 740 CharacterSet="1" 741 > 742 <Tool 743 Name="VCPreBuildEventTool" 744 /> 745 <Tool 746 Name="VCCustomBuildTool" 747 /> 748 <Tool 749 Name="VCXMLDataGeneratorTool" 750 /> 751 <Tool 752 Name="VCWebServiceProxyGeneratorTool" 753 /> 754 <Tool 755 Name="VCMIDLTool" 756 /> 757 <Tool 758 Name="VCCLCompilerTool" 759 ExecutionBucket="7" 760 AdditionalIncludeDirectories="../include,../../pjlib/include" 761 PreprocessorDefinitions="_LIB;" 762 PrecompiledHeaderFile="" 763 /> 764 <Tool 765 Name="VCManagedResourceCompilerTool" 766 /> 767 <Tool 768 Name="VCResourceCompilerTool" 769 /> 770 <Tool 771 Name="VCPreLinkEventTool" 772 /> 773 <Tool 774 Name="VCLibrarianTool" 775 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib" 776 /> 777 <Tool 778 Name="VCALinkTool" 779 /> 780 <Tool 781 Name="VCXDCMakeTool" 782 /> 783 <Tool 784 Name="VCBscMakeTool" 785 /> 786 <Tool 787 Name="VCCodeSignTool" 788 /> 789 <Tool 790 Name="VCPostBuildEventTool" 791 /> 792 <DeploymentTool 793 ForceDirty="-1" 794 RemoteDirectory="" 795 RegisterOutput="0" 796 AdditionalFiles="" 797 /> 798 <DebuggerTool 799 /> 800 </Configuration> 801 <Configuration 538 802 Name="Debug-Static|Win32" 539 803 ConfigurationType="4" … … 786 1050 </Configuration> 787 1051 <Configuration 1052 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 1053 ConfigurationType="4" 1054 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1055 ATLMinimizesCRunTimeLibraryUsage="false" 1056 CharacterSet="1" 1057 > 1058 <Tool 1059 Name="VCPreBuildEventTool" 1060 /> 1061 <Tool 1062 Name="VCCustomBuildTool" 1063 /> 1064 <Tool 1065 Name="VCXMLDataGeneratorTool" 1066 /> 1067 <Tool 1068 Name="VCWebServiceProxyGeneratorTool" 1069 /> 1070 <Tool 1071 Name="VCMIDLTool" 1072 /> 1073 <Tool 1074 Name="VCCLCompilerTool" 1075 ExecutionBucket="7" 1076 AdditionalIncludeDirectories="../include,../../pjlib/include" 1077 PreprocessorDefinitions="_LIB;" 1078 PrecompiledHeaderFile="" 1079 /> 1080 <Tool 1081 Name="VCManagedResourceCompilerTool" 1082 /> 1083 <Tool 1084 Name="VCResourceCompilerTool" 1085 /> 1086 <Tool 1087 Name="VCPreLinkEventTool" 1088 /> 1089 <Tool 1090 Name="VCLibrarianTool" 1091 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib" 1092 /> 1093 <Tool 1094 Name="VCALinkTool" 1095 /> 1096 <Tool 1097 Name="VCXDCMakeTool" 1098 /> 1099 <Tool 1100 Name="VCBscMakeTool" 1101 /> 1102 <Tool 1103 Name="VCCodeSignTool" 1104 /> 1105 <Tool 1106 Name="VCPostBuildEventTool" 1107 /> 1108 <DeploymentTool 1109 ForceDirty="-1" 1110 RemoteDirectory="" 1111 RegisterOutput="0" 1112 AdditionalFiles="" 1113 /> 1114 <DebuggerTool 1115 /> 1116 </Configuration> 1117 <Configuration 1118 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 1119 ConfigurationType="4" 1120 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1121 ATLMinimizesCRunTimeLibraryUsage="false" 1122 CharacterSet="1" 1123 > 1124 <Tool 1125 Name="VCPreBuildEventTool" 1126 /> 1127 <Tool 1128 Name="VCCustomBuildTool" 1129 /> 1130 <Tool 1131 Name="VCXMLDataGeneratorTool" 1132 /> 1133 <Tool 1134 Name="VCWebServiceProxyGeneratorTool" 1135 /> 1136 <Tool 1137 Name="VCMIDLTool" 1138 /> 1139 <Tool 1140 Name="VCCLCompilerTool" 1141 ExecutionBucket="7" 1142 AdditionalIncludeDirectories="../include,../../pjlib/include" 1143 PreprocessorDefinitions="_LIB;" 1144 PrecompiledHeaderFile="" 1145 /> 1146 <Tool 1147 Name="VCManagedResourceCompilerTool" 1148 /> 1149 <Tool 1150 Name="VCResourceCompilerTool" 1151 /> 1152 <Tool 1153 Name="VCPreLinkEventTool" 1154 /> 1155 <Tool 1156 Name="VCLibrarianTool" 1157 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib" 1158 /> 1159 <Tool 1160 Name="VCALinkTool" 1161 /> 1162 <Tool 1163 Name="VCXDCMakeTool" 1164 /> 1165 <Tool 1166 Name="VCBscMakeTool" 1167 /> 1168 <Tool 1169 Name="VCCodeSignTool" 1170 /> 1171 <Tool 1172 Name="VCPostBuildEventTool" 1173 /> 1174 <DeploymentTool 1175 ForceDirty="-1" 1176 RemoteDirectory="" 1177 RegisterOutput="0" 1178 AdditionalFiles="" 1179 /> 1180 <DebuggerTool 1181 /> 1182 </Configuration> 1183 <Configuration 788 1184 Name="Release-Dynamic|Win32" 789 1185 ConfigurationType="4" … … 1035 1431 </Configuration> 1036 1432 <Configuration 1433 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 1434 ConfigurationType="4" 1435 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1436 ATLMinimizesCRunTimeLibraryUsage="false" 1437 CharacterSet="1" 1438 > 1439 <Tool 1440 Name="VCPreBuildEventTool" 1441 /> 1442 <Tool 1443 Name="VCCustomBuildTool" 1444 /> 1445 <Tool 1446 Name="VCXMLDataGeneratorTool" 1447 /> 1448 <Tool 1449 Name="VCWebServiceProxyGeneratorTool" 1450 /> 1451 <Tool 1452 Name="VCMIDLTool" 1453 /> 1454 <Tool 1455 Name="VCCLCompilerTool" 1456 ExecutionBucket="7" 1457 AdditionalIncludeDirectories="../include,../../pjlib/include" 1458 PreprocessorDefinitions="_LIB;" 1459 PrecompiledHeaderFile="" 1460 /> 1461 <Tool 1462 Name="VCManagedResourceCompilerTool" 1463 /> 1464 <Tool 1465 Name="VCResourceCompilerTool" 1466 /> 1467 <Tool 1468 Name="VCPreLinkEventTool" 1469 /> 1470 <Tool 1471 Name="VCLibrarianTool" 1472 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib" 1473 /> 1474 <Tool 1475 Name="VCALinkTool" 1476 /> 1477 <Tool 1478 Name="VCXDCMakeTool" 1479 /> 1480 <Tool 1481 Name="VCBscMakeTool" 1482 /> 1483 <Tool 1484 Name="VCCodeSignTool" 1485 /> 1486 <Tool 1487 Name="VCPostBuildEventTool" 1488 /> 1489 <DeploymentTool 1490 ForceDirty="-1" 1491 RemoteDirectory="" 1492 RegisterOutput="0" 1493 AdditionalFiles="" 1494 /> 1495 <DebuggerTool 1496 /> 1497 </Configuration> 1498 <Configuration 1499 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 1500 ConfigurationType="4" 1501 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1502 ATLMinimizesCRunTimeLibraryUsage="false" 1503 CharacterSet="1" 1504 > 1505 <Tool 1506 Name="VCPreBuildEventTool" 1507 /> 1508 <Tool 1509 Name="VCCustomBuildTool" 1510 /> 1511 <Tool 1512 Name="VCXMLDataGeneratorTool" 1513 /> 1514 <Tool 1515 Name="VCWebServiceProxyGeneratorTool" 1516 /> 1517 <Tool 1518 Name="VCMIDLTool" 1519 /> 1520 <Tool 1521 Name="VCCLCompilerTool" 1522 ExecutionBucket="7" 1523 AdditionalIncludeDirectories="../include,../../pjlib/include" 1524 PreprocessorDefinitions="_LIB;" 1525 PrecompiledHeaderFile="" 1526 /> 1527 <Tool 1528 Name="VCManagedResourceCompilerTool" 1529 /> 1530 <Tool 1531 Name="VCResourceCompilerTool" 1532 /> 1533 <Tool 1534 Name="VCPreLinkEventTool" 1535 /> 1536 <Tool 1537 Name="VCLibrarianTool" 1538 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib" 1539 /> 1540 <Tool 1541 Name="VCALinkTool" 1542 /> 1543 <Tool 1544 Name="VCXDCMakeTool" 1545 /> 1546 <Tool 1547 Name="VCBscMakeTool" 1548 /> 1549 <Tool 1550 Name="VCCodeSignTool" 1551 /> 1552 <Tool 1553 Name="VCPostBuildEventTool" 1554 /> 1555 <DeploymentTool 1556 ForceDirty="-1" 1557 RemoteDirectory="" 1558 RegisterOutput="0" 1559 AdditionalFiles="" 1560 /> 1561 <DebuggerTool 1562 /> 1563 </Configuration> 1564 <Configuration 1037 1565 Name="Debug-Dynamic|Win32" 1038 1566 ConfigurationType="4" … … 1285 1813 </Configuration> 1286 1814 <Configuration 1815 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 1816 ConfigurationType="4" 1817 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1818 ATLMinimizesCRunTimeLibraryUsage="false" 1819 CharacterSet="1" 1820 > 1821 <Tool 1822 Name="VCPreBuildEventTool" 1823 /> 1824 <Tool 1825 Name="VCCustomBuildTool" 1826 /> 1827 <Tool 1828 Name="VCXMLDataGeneratorTool" 1829 /> 1830 <Tool 1831 Name="VCWebServiceProxyGeneratorTool" 1832 /> 1833 <Tool 1834 Name="VCMIDLTool" 1835 /> 1836 <Tool 1837 Name="VCCLCompilerTool" 1838 ExecutionBucket="7" 1839 AdditionalIncludeDirectories="../include,../../pjlib/include" 1840 PreprocessorDefinitions="_LIB;" 1841 PrecompiledHeaderFile="" 1842 /> 1843 <Tool 1844 Name="VCManagedResourceCompilerTool" 1845 /> 1846 <Tool 1847 Name="VCResourceCompilerTool" 1848 /> 1849 <Tool 1850 Name="VCPreLinkEventTool" 1851 /> 1852 <Tool 1853 Name="VCLibrarianTool" 1854 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib" 1855 /> 1856 <Tool 1857 Name="VCALinkTool" 1858 /> 1859 <Tool 1860 Name="VCXDCMakeTool" 1861 /> 1862 <Tool 1863 Name="VCBscMakeTool" 1864 /> 1865 <Tool 1866 Name="VCCodeSignTool" 1867 /> 1868 <Tool 1869 Name="VCPostBuildEventTool" 1870 /> 1871 <DeploymentTool 1872 ForceDirty="-1" 1873 RemoteDirectory="" 1874 RegisterOutput="0" 1875 AdditionalFiles="" 1876 /> 1877 <DebuggerTool 1878 /> 1879 </Configuration> 1880 <Configuration 1881 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 1882 ConfigurationType="4" 1883 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1884 ATLMinimizesCRunTimeLibraryUsage="false" 1885 CharacterSet="1" 1886 > 1887 <Tool 1888 Name="VCPreBuildEventTool" 1889 /> 1890 <Tool 1891 Name="VCCustomBuildTool" 1892 /> 1893 <Tool 1894 Name="VCXMLDataGeneratorTool" 1895 /> 1896 <Tool 1897 Name="VCWebServiceProxyGeneratorTool" 1898 /> 1899 <Tool 1900 Name="VCMIDLTool" 1901 /> 1902 <Tool 1903 Name="VCCLCompilerTool" 1904 ExecutionBucket="7" 1905 AdditionalIncludeDirectories="../include,../../pjlib/include" 1906 PreprocessorDefinitions="_LIB;" 1907 PrecompiledHeaderFile="" 1908 /> 1909 <Tool 1910 Name="VCManagedResourceCompilerTool" 1911 /> 1912 <Tool 1913 Name="VCResourceCompilerTool" 1914 /> 1915 <Tool 1916 Name="VCPreLinkEventTool" 1917 /> 1918 <Tool 1919 Name="VCLibrarianTool" 1920 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib" 1921 /> 1922 <Tool 1923 Name="VCALinkTool" 1924 /> 1925 <Tool 1926 Name="VCXDCMakeTool" 1927 /> 1928 <Tool 1929 Name="VCBscMakeTool" 1930 /> 1931 <Tool 1932 Name="VCCodeSignTool" 1933 /> 1934 <Tool 1935 Name="VCPostBuildEventTool" 1936 /> 1937 <DeploymentTool 1938 ForceDirty="-1" 1939 RemoteDirectory="" 1940 RegisterOutput="0" 1941 AdditionalFiles="" 1942 /> 1943 <DebuggerTool 1944 /> 1945 </Configuration> 1946 <Configuration 1287 1947 Name="Release-Static|Win32" 1288 1948 ConfigurationType="4" … … 1534 2194 </Configuration> 1535 2195 <Configuration 1536 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 1537 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 2196 Name="Release-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 2197 ConfigurationType="4" 2198 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1538 2199 ATLMinimizesCRunTimeLibraryUsage="false" 1539 2200 CharacterSet="1" 1540 ConfigurationType="4"1541 2201 > 1542 2202 <Tool … … 1557 2217 <Tool 1558 2218 Name="VCCLCompilerTool" 1559 PreprocessorDefinitions="_LIB;"1560 2219 ExecutionBucket="7" 1561 2220 AdditionalIncludeDirectories="../include,../../pjlib/include" 2221 PreprocessorDefinitions="_LIB;" 1562 2222 PrecompiledHeaderFile="" 1563 2223 /> … … 1600 2260 </Configuration> 1601 2261 <Configuration 1602 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 1603 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1604 ATLMinimizesCRunTimeLibraryUsage="false" 1605 CharacterSet="1" 2262 Name="Release-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 1606 2263 ConfigurationType="4" 1607 >1608 <Tool1609 Name="VCPreBuildEventTool"1610 />1611 <Tool1612 Name="VCCustomBuildTool"1613 />1614 <Tool1615 Name="VCXMLDataGeneratorTool"1616 />1617 <Tool1618 Name="VCWebServiceProxyGeneratorTool"1619 />1620 <Tool1621 Name="VCMIDLTool"1622 />1623 <Tool1624 Name="VCCLCompilerTool"1625 PreprocessorDefinitions="_LIB;"1626 ExecutionBucket="7"1627 AdditionalIncludeDirectories="../include,../../pjlib/include"1628 PrecompiledHeaderFile=""1629 />1630 <Tool1631 Name="VCManagedResourceCompilerTool"1632 />1633 <Tool1634 Name="VCResourceCompilerTool"1635 />1636 <Tool1637 Name="VCPreLinkEventTool"1638 />1639 <Tool1640 Name="VCLibrarianTool"1641 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib"1642 />1643 <Tool1644 Name="VCALinkTool"1645 />1646 <Tool1647 Name="VCXDCMakeTool"1648 />1649 <Tool1650 Name="VCBscMakeTool"1651 />1652 <Tool1653 Name="VCCodeSignTool"1654 />1655 <Tool1656 Name="VCPostBuildEventTool"1657 />1658 <DeploymentTool1659 ForceDirty="-1"1660 RemoteDirectory=""1661 RegisterOutput="0"1662 AdditionalFiles=""1663 />1664 <DebuggerTool1665 />1666 </Configuration>1667 <Configuration1668 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)"1669 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"1670 ATLMinimizesCRunTimeLibraryUsage="false"1671 CharacterSet="1"1672 ConfigurationType="4"1673 >1674 <Tool1675 Name="VCPreBuildEventTool"1676 />1677 <Tool1678 Name="VCCustomBuildTool"1679 />1680 <Tool1681 Name="VCXMLDataGeneratorTool"1682 />1683 <Tool1684 Name="VCWebServiceProxyGeneratorTool"1685 />1686 <Tool1687 Name="VCMIDLTool"1688 />1689 <Tool1690 Name="VCCLCompilerTool"1691 PreprocessorDefinitions="_LIB;"1692 ExecutionBucket="7"1693 AdditionalIncludeDirectories="../include,../../pjlib/include"1694 PrecompiledHeaderFile=""1695 />1696 <Tool1697 Name="VCManagedResourceCompilerTool"1698 />1699 <Tool1700 Name="VCResourceCompilerTool"1701 />1702 <Tool1703 Name="VCPreLinkEventTool"1704 />1705 <Tool1706 Name="VCLibrarianTool"1707 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib"1708 />1709 <Tool1710 Name="VCALinkTool"1711 />1712 <Tool1713 Name="VCXDCMakeTool"1714 />1715 <Tool1716 Name="VCBscMakeTool"1717 />1718 <Tool1719 Name="VCCodeSignTool"1720 />1721 <Tool1722 Name="VCPostBuildEventTool"1723 />1724 <DeploymentTool1725 ForceDirty="-1"1726 RemoteDirectory=""1727 RegisterOutput="0"1728 AdditionalFiles=""1729 />1730 <DebuggerTool1731 />1732 </Configuration>1733 <Configuration1734 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"1735 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"1736 ATLMinimizesCRunTimeLibraryUsage="false"1737 CharacterSet="1"1738 ConfigurationType="4"1739 >1740 <Tool1741 Name="VCPreBuildEventTool"1742 />1743 <Tool1744 Name="VCCustomBuildTool"1745 />1746 <Tool1747 Name="VCXMLDataGeneratorTool"1748 />1749 <Tool1750 Name="VCWebServiceProxyGeneratorTool"1751 />1752 <Tool1753 Name="VCMIDLTool"1754 />1755 <Tool1756 Name="VCCLCompilerTool"1757 PreprocessorDefinitions="_LIB;"1758 ExecutionBucket="7"1759 AdditionalIncludeDirectories="../include,../../pjlib/include"1760 PrecompiledHeaderFile=""1761 />1762 <Tool1763 Name="VCManagedResourceCompilerTool"1764 />1765 <Tool1766 Name="VCResourceCompilerTool"1767 />1768 <Tool1769 Name="VCPreLinkEventTool"1770 />1771 <Tool1772 Name="VCLibrarianTool"1773 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib"1774 />1775 <Tool1776 Name="VCALinkTool"1777 />1778 <Tool1779 Name="VCXDCMakeTool"1780 />1781 <Tool1782 Name="VCBscMakeTool"1783 />1784 <Tool1785 Name="VCCodeSignTool"1786 />1787 <Tool1788 Name="VCPostBuildEventTool"1789 />1790 <DeploymentTool1791 ForceDirty="-1"1792 RemoteDirectory=""1793 RegisterOutput="0"1794 AdditionalFiles=""1795 />1796 <DebuggerTool1797 />1798 </Configuration>1799 <Configuration1800 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)"1801 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"1802 ATLMinimizesCRunTimeLibraryUsage="false"1803 CharacterSet="1"1804 ConfigurationType="4"1805 >1806 <Tool1807 Name="VCPreBuildEventTool"1808 />1809 <Tool1810 Name="VCCustomBuildTool"1811 />1812 <Tool1813 Name="VCXMLDataGeneratorTool"1814 />1815 <Tool1816 Name="VCWebServiceProxyGeneratorTool"1817 />1818 <Tool1819 Name="VCMIDLTool"1820 />1821 <Tool1822 Name="VCCLCompilerTool"1823 PreprocessorDefinitions="_LIB;"1824 ExecutionBucket="7"1825 AdditionalIncludeDirectories="../include,../../pjlib/include"1826 PrecompiledHeaderFile=""1827 />1828 <Tool1829 Name="VCManagedResourceCompilerTool"1830 />1831 <Tool1832 Name="VCResourceCompilerTool"1833 />1834 <Tool1835 Name="VCPreLinkEventTool"1836 />1837 <Tool1838 Name="VCLibrarianTool"1839 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib"1840 />1841 <Tool1842 Name="VCALinkTool"1843 />1844 <Tool1845 Name="VCXDCMakeTool"1846 />1847 <Tool1848 Name="VCBscMakeTool"1849 />1850 <Tool1851 Name="VCCodeSignTool"1852 />1853 <Tool1854 Name="VCPostBuildEventTool"1855 />1856 <DeploymentTool1857 ForceDirty="-1"1858 RemoteDirectory=""1859 RegisterOutput="0"1860 AdditionalFiles=""1861 />1862 <DebuggerTool1863 />1864 </Configuration>1865 <Configuration1866 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)"1867 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"1868 ATLMinimizesCRunTimeLibraryUsage="false"1869 CharacterSet="1"1870 ConfigurationType="4"1871 >1872 <Tool1873 Name="VCPreBuildEventTool"1874 />1875 <Tool1876 Name="VCCustomBuildTool"1877 />1878 <Tool1879 Name="VCXMLDataGeneratorTool"1880 />1881 <Tool1882 Name="VCWebServiceProxyGeneratorTool"1883 />1884 <Tool1885 Name="VCMIDLTool"1886 />1887 <Tool1888 Name="VCCLCompilerTool"1889 PreprocessorDefinitions="_LIB;"1890 ExecutionBucket="7"1891 AdditionalIncludeDirectories="../include,../../pjlib/include"1892 PrecompiledHeaderFile=""1893 />1894 <Tool1895 Name="VCManagedResourceCompilerTool"1896 />1897 <Tool1898 Name="VCResourceCompilerTool"1899 />1900 <Tool1901 Name="VCPreLinkEventTool"1902 />1903 <Tool1904 Name="VCLibrarianTool"1905 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib"1906 />1907 <Tool1908 Name="VCALinkTool"1909 />1910 <Tool1911 Name="VCXDCMakeTool"1912 />1913 <Tool1914 Name="VCBscMakeTool"1915 />1916 <Tool1917 Name="VCCodeSignTool"1918 />1919 <Tool1920 Name="VCPostBuildEventTool"1921 />1922 <DeploymentTool1923 ForceDirty="-1"1924 RemoteDirectory=""1925 RegisterOutput="0"1926 AdditionalFiles=""1927 />1928 <DebuggerTool1929 />1930 </Configuration>1931 <Configuration1932 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"1933 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops"1934 ATLMinimizesCRunTimeLibraryUsage="false"1935 CharacterSet="1"1936 ConfigurationType="4"1937 >1938 <Tool1939 Name="VCPreBuildEventTool"1940 />1941 <Tool1942 Name="VCCustomBuildTool"1943 />1944 <Tool1945 Name="VCXMLDataGeneratorTool"1946 />1947 <Tool1948 Name="VCWebServiceProxyGeneratorTool"1949 />1950 <Tool1951 Name="VCMIDLTool"1952 />1953 <Tool1954 Name="VCCLCompilerTool"1955 PreprocessorDefinitions="_LIB;"1956 ExecutionBucket="7"1957 AdditionalIncludeDirectories="../include,../../pjlib/include"1958 PrecompiledHeaderFile=""1959 />1960 <Tool1961 Name="VCManagedResourceCompilerTool"1962 />1963 <Tool1964 Name="VCResourceCompilerTool"1965 />1966 <Tool1967 Name="VCPreLinkEventTool"1968 />1969 <Tool1970 Name="VCLibrarianTool"1971 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib"1972 />1973 <Tool1974 Name="VCALinkTool"1975 />1976 <Tool1977 Name="VCXDCMakeTool"1978 />1979 <Tool1980 Name="VCBscMakeTool"1981 />1982 <Tool1983 Name="VCCodeSignTool"1984 />1985 <Tool1986 Name="VCPostBuildEventTool"1987 />1988 <DeploymentTool1989 ForceDirty="-1"1990 RemoteDirectory=""1991 RegisterOutput="0"1992 AdditionalFiles=""1993 />1994 <DebuggerTool1995 />1996 </Configuration>1997 <Configuration1998 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"1999 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops"2000 ATLMinimizesCRunTimeLibraryUsage="false"2001 CharacterSet="1"2002 ConfigurationType="4"2003 >2004 <Tool2005 Name="VCPreBuildEventTool"2006 />2007 <Tool2008 Name="VCCustomBuildTool"2009 />2010 <Tool2011 Name="VCXMLDataGeneratorTool"2012 />2013 <Tool2014 Name="VCWebServiceProxyGeneratorTool"2015 />2016 <Tool2017 Name="VCMIDLTool"2018 />2019 <Tool2020 Name="VCCLCompilerTool"2021 PreprocessorDefinitions="_LIB;"2022 ExecutionBucket="7"2023 AdditionalIncludeDirectories="../include,../../pjlib/include"2024 PrecompiledHeaderFile=""2025 />2026 <Tool2027 Name="VCManagedResourceCompilerTool"2028 />2029 <Tool2030 Name="VCResourceCompilerTool"2031 />2032 <Tool2033 Name="VCPreLinkEventTool"2034 />2035 <Tool2036 Name="VCLibrarianTool"2037 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib"2038 />2039 <Tool2040 Name="VCALinkTool"2041 />2042 <Tool2043 Name="VCXDCMakeTool"2044 />2045 <Tool2046 Name="VCBscMakeTool"2047 />2048 <Tool2049 Name="VCCodeSignTool"2050 />2051 <Tool2052 Name="VCPostBuildEventTool"2053 />2054 <DeploymentTool2055 ForceDirty="-1"2056 RemoteDirectory=""2057 RegisterOutput="0"2058 AdditionalFiles=""2059 />2060 <DebuggerTool2061 />2062 </Configuration>2063 <Configuration2064 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"2065 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"2066 ATLMinimizesCRunTimeLibraryUsage="false"2067 CharacterSet="1"2068 ConfigurationType="4"2069 >2070 <Tool2071 Name="VCPreBuildEventTool"2072 />2073 <Tool2074 Name="VCCustomBuildTool"2075 />2076 <Tool2077 Name="VCXMLDataGeneratorTool"2078 />2079 <Tool2080 Name="VCWebServiceProxyGeneratorTool"2081 />2082 <Tool2083 Name="VCMIDLTool"2084 />2085 <Tool2086 Name="VCCLCompilerTool"2087 PreprocessorDefinitions="_LIB;"2088 ExecutionBucket="7"2089 AdditionalIncludeDirectories="../include,../../pjlib/include"2090 PrecompiledHeaderFile=""2091 />2092 <Tool2093 Name="VCManagedResourceCompilerTool"2094 />2095 <Tool2096 Name="VCResourceCompilerTool"2097 />2098 <Tool2099 Name="VCPreLinkEventTool"2100 />2101 <Tool2102 Name="VCLibrarianTool"2103 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib"2104 />2105 <Tool2106 Name="VCALinkTool"2107 />2108 <Tool2109 Name="VCXDCMakeTool"2110 />2111 <Tool2112 Name="VCBscMakeTool"2113 />2114 <Tool2115 Name="VCCodeSignTool"2116 />2117 <Tool2118 Name="VCPostBuildEventTool"2119 />2120 <DeploymentTool2121 ForceDirty="-1"2122 RemoteDirectory=""2123 RegisterOutput="0"2124 AdditionalFiles=""2125 />2126 <DebuggerTool2127 />2128 </Configuration>2129 <Configuration2130 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"2131 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"2132 ATLMinimizesCRunTimeLibraryUsage="false"2133 CharacterSet="1"2134 ConfigurationType="4"2135 >2136 <Tool2137 Name="VCPreBuildEventTool"2138 />2139 <Tool2140 Name="VCCustomBuildTool"2141 />2142 <Tool2143 Name="VCXMLDataGeneratorTool"2144 />2145 <Tool2146 Name="VCWebServiceProxyGeneratorTool"2147 />2148 <Tool2149 Name="VCMIDLTool"2150 />2151 <Tool2152 Name="VCCLCompilerTool"2153 PreprocessorDefinitions="_LIB;"2154 ExecutionBucket="7"2155 AdditionalIncludeDirectories="../include,../../pjlib/include"2156 PrecompiledHeaderFile=""2157 />2158 <Tool2159 Name="VCManagedResourceCompilerTool"2160 />2161 <Tool2162 Name="VCResourceCompilerTool"2163 />2164 <Tool2165 Name="VCPreLinkEventTool"2166 />2167 <Tool2168 Name="VCLibrarianTool"2169 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).lib"2170 />2171 <Tool2172 Name="VCALinkTool"2173 />2174 <Tool2175 Name="VCXDCMakeTool"2176 />2177 <Tool2178 Name="VCBscMakeTool"2179 />2180 <Tool2181 Name="VCCodeSignTool"2182 />2183 <Tool2184 Name="VCPostBuildEventTool"2185 />2186 <DeploymentTool2187 ForceDirty="-1"2188 RemoteDirectory=""2189 RegisterOutput="0"2190 AdditionalFiles=""2191 />2192 <DebuggerTool2193 />2194 </Configuration>2195 <Configuration2196 Name="Release-Static|Windows Mobile 6 Standard SDK (ARMV4I)"2197 2264 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 2198 2265 ATLMinimizesCRunTimeLibraryUsage="false" 2199 2266 CharacterSet="1" 2200 ConfigurationType="4"2201 2267 > 2202 2268 <Tool … … 2217 2283 <Tool 2218 2284 Name="VCCLCompilerTool" 2219 PreprocessorDefinitions="_LIB;"2220 2285 ExecutionBucket="7" 2221 2286 AdditionalIncludeDirectories="../include,../../pjlib/include" 2222 PrecompiledHeaderFile=""2223 />2224 <Tool2225 Name="VCManagedResourceCompilerTool"2226 />2227 <Tool2228 Name="VCResourceCompilerTool"2229 />2230 <Tool2231 Name="VCPreLinkEventTool"2232 />2233 <Tool2234 Name="VCLibrarianTool"2235 OutputFile="..\lib\pjlib-util-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).lib"2236 />2237 <Tool2238 Name="VCALinkTool"2239 />2240 <Tool2241 Name="VCXDCMakeTool"2242 />2243 <Tool2244 Name="VCBscMakeTool"2245 />2246 <Tool2247 Name="VCCodeSignTool"2248 />2249 <Tool2250 Name="VCPostBuildEventTool"2251 />2252 <DeploymentTool2253 ForceDirty="-1"2254 RemoteDirectory=""2255 RegisterOutput="0"2256 AdditionalFiles=""2257 />2258 <DebuggerTool2259 />2260 </Configuration>2261 <Configuration2262 Name="Release-Static|Windows Mobile 6 Professional SDK (ARMV4I)"2263 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops"2264 ATLMinimizesCRunTimeLibraryUsage="false"2265 CharacterSet="1"2266 ConfigurationType="4"2267 >2268 <Tool2269 Name="VCPreBuildEventTool"2270 />2271 <Tool2272 Name="VCCustomBuildTool"2273 />2274 <Tool2275 Name="VCXMLDataGeneratorTool"2276 />2277 <Tool2278 Name="VCWebServiceProxyGeneratorTool"2279 />2280 <Tool2281 Name="VCMIDLTool"2282 />2283 <Tool2284 Name="VCCLCompilerTool"2285 2287 PreprocessorDefinitions="_LIB;" 2286 ExecutionBucket="7"2287 AdditionalIncludeDirectories="../include,../../pjlib/include"2288 2288 PrecompiledHeaderFile="" 2289 2289 /> … … 3934 3934 </File> 3935 3935 <File 3936 RelativePath="..\src\pjlib-util\json.c" 3937 > 3938 </File> 3939 <File 3936 3940 RelativePath="..\src\pjlib-util\md5.c" 3937 3941 > … … 4313 4317 </FileConfiguration> 4314 4318 <FileConfiguration 4319 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 4320 ExcludedFromBuild="true" 4321 > 4322 <Tool 4323 Name="VCCLCompilerTool" 4324 /> 4325 </FileConfiguration> 4326 <FileConfiguration 4327 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 4328 ExcludedFromBuild="true" 4329 > 4330 <Tool 4331 Name="VCCLCompilerTool" 4332 /> 4333 </FileConfiguration> 4334 <FileConfiguration 4315 4335 Name="Debug|Win32" 4316 4336 ExcludedFromBuild="true" … … 4349 4369 </FileConfiguration> 4350 4370 <FileConfiguration 4371 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 4372 ExcludedFromBuild="true" 4373 > 4374 <Tool 4375 Name="VCCLCompilerTool" 4376 /> 4377 </FileConfiguration> 4378 <FileConfiguration 4379 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 4380 ExcludedFromBuild="true" 4381 > 4382 <Tool 4383 Name="VCCLCompilerTool" 4384 /> 4385 </FileConfiguration> 4386 <FileConfiguration 4351 4387 Name="Debug-Static|Win32" 4352 4388 ExcludedFromBuild="true" … … 4385 4421 </FileConfiguration> 4386 4422 <FileConfiguration 4423 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 4424 ExcludedFromBuild="true" 4425 > 4426 <Tool 4427 Name="VCCLCompilerTool" 4428 /> 4429 </FileConfiguration> 4430 <FileConfiguration 4431 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 4432 ExcludedFromBuild="true" 4433 > 4434 <Tool 4435 Name="VCCLCompilerTool" 4436 /> 4437 </FileConfiguration> 4438 <FileConfiguration 4387 4439 Name="Release-Dynamic|Win32" 4388 4440 ExcludedFromBuild="true" … … 4421 4473 </FileConfiguration> 4422 4474 <FileConfiguration 4475 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 4476 ExcludedFromBuild="true" 4477 > 4478 <Tool 4479 Name="VCCLCompilerTool" 4480 /> 4481 </FileConfiguration> 4482 <FileConfiguration 4483 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 4484 ExcludedFromBuild="true" 4485 > 4486 <Tool 4487 Name="VCCLCompilerTool" 4488 /> 4489 </FileConfiguration> 4490 <FileConfiguration 4423 4491 Name="Debug-Dynamic|Win32" 4424 4492 ExcludedFromBuild="true" … … 4457 4525 </FileConfiguration> 4458 4526 <FileConfiguration 4527 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 4528 ExcludedFromBuild="true" 4529 > 4530 <Tool 4531 Name="VCCLCompilerTool" 4532 /> 4533 </FileConfiguration> 4534 <FileConfiguration 4535 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 4536 ExcludedFromBuild="true" 4537 > 4538 <Tool 4539 Name="VCCLCompilerTool" 4540 /> 4541 </FileConfiguration> 4542 <FileConfiguration 4459 4543 Name="Release-Static|Win32" 4460 4544 ExcludedFromBuild="true" … … 4490 4574 AdditionalIncludeDirectories="" 4491 4575 PreprocessorDefinitions="" 4492 />4493 </FileConfiguration>4494 <FileConfiguration4495 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)"4496 ExcludedFromBuild="true"4497 >4498 <Tool4499 Name="VCCLCompilerTool"4500 />4501 </FileConfiguration>4502 <FileConfiguration4503 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"4504 ExcludedFromBuild="true"4505 >4506 <Tool4507 Name="VCCLCompilerTool"4508 />4509 </FileConfiguration>4510 <FileConfiguration4511 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)"4512 ExcludedFromBuild="true"4513 >4514 <Tool4515 Name="VCCLCompilerTool"4516 />4517 </FileConfiguration>4518 <FileConfiguration4519 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"4520 ExcludedFromBuild="true"4521 >4522 <Tool4523 Name="VCCLCompilerTool"4524 />4525 </FileConfiguration>4526 <FileConfiguration4527 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)"4528 ExcludedFromBuild="true"4529 >4530 <Tool4531 Name="VCCLCompilerTool"4532 />4533 </FileConfiguration>4534 <FileConfiguration4535 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)"4536 ExcludedFromBuild="true"4537 >4538 <Tool4539 Name="VCCLCompilerTool"4540 />4541 </FileConfiguration>4542 <FileConfiguration4543 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"4544 ExcludedFromBuild="true"4545 >4546 <Tool4547 Name="VCCLCompilerTool"4548 />4549 </FileConfiguration>4550 <FileConfiguration4551 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"4552 ExcludedFromBuild="true"4553 >4554 <Tool4555 Name="VCCLCompilerTool"4556 />4557 </FileConfiguration>4558 <FileConfiguration4559 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"4560 ExcludedFromBuild="true"4561 >4562 <Tool4563 Name="VCCLCompilerTool"4564 />4565 </FileConfiguration>4566 <FileConfiguration4567 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"4568 ExcludedFromBuild="true"4569 >4570 <Tool4571 Name="VCCLCompilerTool"4572 4576 /> 4573 4577 </FileConfiguration> … … 4725 4729 </FileConfiguration> 4726 4730 <FileConfiguration 4731 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 4732 ExcludedFromBuild="true" 4733 > 4734 <Tool 4735 Name="VCCLCompilerTool" 4736 /> 4737 </FileConfiguration> 4738 <FileConfiguration 4739 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 4740 ExcludedFromBuild="true" 4741 > 4742 <Tool 4743 Name="VCCLCompilerTool" 4744 /> 4745 </FileConfiguration> 4746 <FileConfiguration 4727 4747 Name="Debug|Win32" 4728 4748 ExcludedFromBuild="true" … … 4761 4781 </FileConfiguration> 4762 4782 <FileConfiguration 4783 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 4784 ExcludedFromBuild="true" 4785 > 4786 <Tool 4787 Name="VCCLCompilerTool" 4788 /> 4789 </FileConfiguration> 4790 <FileConfiguration 4791 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 4792 ExcludedFromBuild="true" 4793 > 4794 <Tool 4795 Name="VCCLCompilerTool" 4796 /> 4797 </FileConfiguration> 4798 <FileConfiguration 4763 4799 Name="Debug-Static|Win32" 4764 4800 ExcludedFromBuild="true" … … 4797 4833 </FileConfiguration> 4798 4834 <FileConfiguration 4835 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 4836 ExcludedFromBuild="true" 4837 > 4838 <Tool 4839 Name="VCCLCompilerTool" 4840 /> 4841 </FileConfiguration> 4842 <FileConfiguration 4843 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 4844 ExcludedFromBuild="true" 4845 > 4846 <Tool 4847 Name="VCCLCompilerTool" 4848 /> 4849 </FileConfiguration> 4850 <FileConfiguration 4799 4851 Name="Release-Dynamic|Win32" 4800 4852 ExcludedFromBuild="true" … … 4833 4885 </FileConfiguration> 4834 4886 <FileConfiguration 4887 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 4888 ExcludedFromBuild="true" 4889 > 4890 <Tool 4891 Name="VCCLCompilerTool" 4892 /> 4893 </FileConfiguration> 4894 <FileConfiguration 4895 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 4896 ExcludedFromBuild="true" 4897 > 4898 <Tool 4899 Name="VCCLCompilerTool" 4900 /> 4901 </FileConfiguration> 4902 <FileConfiguration 4835 4903 Name="Debug-Dynamic|Win32" 4836 4904 ExcludedFromBuild="true" … … 4869 4937 </FileConfiguration> 4870 4938 <FileConfiguration 4939 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 4940 ExcludedFromBuild="true" 4941 > 4942 <Tool 4943 Name="VCCLCompilerTool" 4944 /> 4945 </FileConfiguration> 4946 <FileConfiguration 4947 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 4948 ExcludedFromBuild="true" 4949 > 4950 <Tool 4951 Name="VCCLCompilerTool" 4952 /> 4953 </FileConfiguration> 4954 <FileConfiguration 4871 4955 Name="Release-Static|Win32" 4872 4956 ExcludedFromBuild="true" … … 4902 4986 AdditionalIncludeDirectories="" 4903 4987 PreprocessorDefinitions="" 4904 />4905 </FileConfiguration>4906 <FileConfiguration4907 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)"4908 ExcludedFromBuild="true"4909 >4910 <Tool4911 Name="VCCLCompilerTool"4912 />4913 </FileConfiguration>4914 <FileConfiguration4915 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"4916 ExcludedFromBuild="true"4917 >4918 <Tool4919 Name="VCCLCompilerTool"4920 />4921 </FileConfiguration>4922 <FileConfiguration4923 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)"4924 ExcludedFromBuild="true"4925 >4926 <Tool4927 Name="VCCLCompilerTool"4928 />4929 </FileConfiguration>4930 <FileConfiguration4931 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"4932 ExcludedFromBuild="true"4933 >4934 <Tool4935 Name="VCCLCompilerTool"4936 />4937 </FileConfiguration>4938 <FileConfiguration4939 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)"4940 ExcludedFromBuild="true"4941 >4942 <Tool4943 Name="VCCLCompilerTool"4944 />4945 </FileConfiguration>4946 <FileConfiguration4947 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)"4948 ExcludedFromBuild="true"4949 >4950 <Tool4951 Name="VCCLCompilerTool"4952 />4953 </FileConfiguration>4954 <FileConfiguration4955 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"4956 ExcludedFromBuild="true"4957 >4958 <Tool4959 Name="VCCLCompilerTool"4960 />4961 </FileConfiguration>4962 <FileConfiguration4963 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"4964 ExcludedFromBuild="true"4965 >4966 <Tool4967 Name="VCCLCompilerTool"4968 />4969 </FileConfiguration>4970 <FileConfiguration4971 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"4972 ExcludedFromBuild="true"4973 >4974 <Tool4975 Name="VCCLCompilerTool"4976 />4977 </FileConfiguration>4978 <FileConfiguration4979 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"4980 ExcludedFromBuild="true"4981 >4982 <Tool4983 Name="VCCLCompilerTool"4984 4988 /> 4985 4989 </FileConfiguration> … … 5587 5591 </FileConfiguration> 5588 5592 <FileConfiguration 5593 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 5594 ExcludedFromBuild="true" 5595 > 5596 <Tool 5597 Name="VCCLCompilerTool" 5598 /> 5599 </FileConfiguration> 5600 <FileConfiguration 5601 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 5602 ExcludedFromBuild="true" 5603 > 5604 <Tool 5605 Name="VCCLCompilerTool" 5606 /> 5607 </FileConfiguration> 5608 <FileConfiguration 5589 5609 Name="Debug|Win32" 5590 5610 > … … 5621 5641 </FileConfiguration> 5622 5642 <FileConfiguration 5643 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 5644 ExcludedFromBuild="true" 5645 > 5646 <Tool 5647 Name="VCCLCompilerTool" 5648 /> 5649 </FileConfiguration> 5650 <FileConfiguration 5651 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 5652 ExcludedFromBuild="true" 5653 > 5654 <Tool 5655 Name="VCCLCompilerTool" 5656 /> 5657 </FileConfiguration> 5658 <FileConfiguration 5623 5659 Name="Debug-Static|Win32" 5624 5660 > … … 5655 5691 </FileConfiguration> 5656 5692 <FileConfiguration 5693 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 5694 ExcludedFromBuild="true" 5695 > 5696 <Tool 5697 Name="VCCLCompilerTool" 5698 /> 5699 </FileConfiguration> 5700 <FileConfiguration 5701 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 5702 ExcludedFromBuild="true" 5703 > 5704 <Tool 5705 Name="VCCLCompilerTool" 5706 /> 5707 </FileConfiguration> 5708 <FileConfiguration 5657 5709 Name="Release-Dynamic|Win32" 5658 5710 > … … 5689 5741 </FileConfiguration> 5690 5742 <FileConfiguration 5743 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 5744 ExcludedFromBuild="true" 5745 > 5746 <Tool 5747 Name="VCCLCompilerTool" 5748 /> 5749 </FileConfiguration> 5750 <FileConfiguration 5751 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 5752 ExcludedFromBuild="true" 5753 > 5754 <Tool 5755 Name="VCCLCompilerTool" 5756 /> 5757 </FileConfiguration> 5758 <FileConfiguration 5691 5759 Name="Debug-Dynamic|Win32" 5692 5760 > … … 5723 5791 </FileConfiguration> 5724 5792 <FileConfiguration 5793 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 5794 ExcludedFromBuild="true" 5795 > 5796 <Tool 5797 Name="VCCLCompilerTool" 5798 /> 5799 </FileConfiguration> 5800 <FileConfiguration 5801 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 5802 ExcludedFromBuild="true" 5803 > 5804 <Tool 5805 Name="VCCLCompilerTool" 5806 /> 5807 </FileConfiguration> 5808 <FileConfiguration 5725 5809 Name="Release-Static|Win32" 5726 5810 > … … 5754 5838 AdditionalIncludeDirectories="" 5755 5839 PreprocessorDefinitions="" 5756 />5757 </FileConfiguration>5758 <FileConfiguration5759 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)"5760 ExcludedFromBuild="true"5761 >5762 <Tool5763 Name="VCCLCompilerTool"5764 />5765 </FileConfiguration>5766 <FileConfiguration5767 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"5768 ExcludedFromBuild="true"5769 >5770 <Tool5771 Name="VCCLCompilerTool"5772 />5773 </FileConfiguration>5774 <FileConfiguration5775 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)"5776 ExcludedFromBuild="true"5777 >5778 <Tool5779 Name="VCCLCompilerTool"5780 />5781 </FileConfiguration>5782 <FileConfiguration5783 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"5784 ExcludedFromBuild="true"5785 >5786 <Tool5787 Name="VCCLCompilerTool"5788 />5789 </FileConfiguration>5790 <FileConfiguration5791 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)"5792 ExcludedFromBuild="true"5793 >5794 <Tool5795 Name="VCCLCompilerTool"5796 />5797 </FileConfiguration>5798 <FileConfiguration5799 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)"5800 ExcludedFromBuild="true"5801 >5802 <Tool5803 Name="VCCLCompilerTool"5804 />5805 </FileConfiguration>5806 <FileConfiguration5807 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"5808 ExcludedFromBuild="true"5809 >5810 <Tool5811 Name="VCCLCompilerTool"5812 />5813 </FileConfiguration>5814 <FileConfiguration5815 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"5816 ExcludedFromBuild="true"5817 >5818 <Tool5819 Name="VCCLCompilerTool"5820 />5821 </FileConfiguration>5822 <FileConfiguration5823 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"5824 ExcludedFromBuild="true"5825 >5826 <Tool5827 Name="VCCLCompilerTool"5828 />5829 </FileConfiguration>5830 <FileConfiguration5831 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"5832 ExcludedFromBuild="true"5833 >5834 <Tool5835 Name="VCCLCompilerTool"5836 5840 /> 5837 5841 </FileConfiguration> … … 6123 6127 </File> 6124 6128 <File 6129 RelativePath="..\include\pjlib-util\json.h" 6130 > 6131 </File> 6132 <File 6125 6133 RelativePath="..\include\pjlib-util\md5.h" 6126 6134 > -
pjproject/trunk/pjlib-util/build/pjlib_util_test.vcproj
r4537 r4704 307 307 </Configuration> 308 308 <Configuration 309 Name="Debug|Win32" 310 ConfigurationType="1" 311 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 312 UseOfMFC="0" 313 ATLMinimizesCRunTimeLibraryUsage="false" 314 CharacterSet="2" 315 > 316 <Tool 317 Name="VCPreBuildEventTool" 318 /> 319 <Tool 320 Name="VCCustomBuildTool" 321 /> 322 <Tool 323 Name="VCXMLDataGeneratorTool" 324 /> 325 <Tool 326 Name="VCWebServiceProxyGeneratorTool" 327 /> 328 <Tool 329 Name="VCMIDLTool" 330 /> 331 <Tool 332 Name="VCCLCompilerTool" 333 AdditionalIncludeDirectories="../include,../../pjlib/include" 334 PreprocessorDefinitions="_CONSOLE;" 335 PrecompiledHeaderFile="" 336 /> 337 <Tool 338 Name="VCManagedResourceCompilerTool" 339 /> 340 <Tool 341 Name="VCResourceCompilerTool" 342 /> 343 <Tool 344 Name="VCPreLinkEventTool" 345 /> 346 <Tool 347 Name="VCLinkerTool" 348 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 349 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 350 /> 351 <Tool 352 Name="VCALinkTool" 353 /> 354 <Tool 355 Name="VCManifestTool" 356 /> 357 <Tool 358 Name="VCXDCMakeTool" 359 /> 360 <Tool 361 Name="VCBscMakeTool" 362 /> 363 <Tool 364 Name="VCFxCopTool" 365 /> 366 <Tool 367 Name="VCAppVerifierTool" 368 /> 369 <Tool 370 Name="VCWebDeploymentTool" 371 /> 372 <Tool 373 Name="VCPostBuildEventTool" 374 /> 375 </Configuration> 376 <Configuration 377 Name="Debug|Pocket PC 2003 (ARMV4)" 378 ConfigurationType="1" 379 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 309 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 310 ConfigurationType="1" 311 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 380 312 ATLMinimizesCRunTimeLibraryUsage="false" 381 313 CharacterSet="1" … … 414 346 Name="VCLinkerTool" 415 347 AdditionalDependencies="ws2.lib" 416 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 2003ppc-vc$(VSVer)-$(ConfigurationName).exe"348 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 417 349 /> 418 350 <Tool … … 441 373 </Configuration> 442 374 <Configuration 443 Name=" Debug|Smartphone 2003 (ARMV4)"444 ConfigurationType="1" 445 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops"375 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 376 ConfigurationType="1" 377 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 446 378 ATLMinimizesCRunTimeLibraryUsage="false" 447 379 CharacterSet="1" … … 480 412 Name="VCLinkerTool" 481 413 AdditionalDependencies="ws2.lib" 482 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 2003sp-vc$(VSVer)-$(ConfigurationName).exe"414 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 483 415 /> 484 416 <Tool … … 507 439 </Configuration> 508 440 <Configuration 509 Name="Debug| x64"510 ConfigurationType="1" 511 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win 64-common-defaults.vsprops"441 Name="Debug|Win32" 442 ConfigurationType="1" 443 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 512 444 UseOfMFC="0" 513 445 ATLMinimizesCRunTimeLibraryUsage="false" … … 528 460 <Tool 529 461 Name="VCMIDLTool" 530 TargetEnvironment="3"531 462 /> 532 463 <Tool … … 535 466 PreprocessorDefinitions="_CONSOLE;" 536 467 PrecompiledHeaderFile="" 537 DebugInformationFormat="3"538 468 /> 539 469 <Tool … … 550 480 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 551 481 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 552 TargetMachine="17"553 482 /> 554 483 <Tool … … 578 507 </Configuration> 579 508 <Configuration 580 Name="Debug-Static|Win32" 581 ConfigurationType="1" 582 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 583 UseOfMFC="0" 584 ATLMinimizesCRunTimeLibraryUsage="false" 585 CharacterSet="2" 586 > 587 <Tool 588 Name="VCPreBuildEventTool" 589 /> 590 <Tool 591 Name="VCCustomBuildTool" 592 /> 593 <Tool 594 Name="VCXMLDataGeneratorTool" 595 /> 596 <Tool 597 Name="VCWebServiceProxyGeneratorTool" 598 /> 599 <Tool 600 Name="VCMIDLTool" 601 /> 602 <Tool 603 Name="VCCLCompilerTool" 604 AdditionalIncludeDirectories="../include,../../pjlib/include" 605 PreprocessorDefinitions="_CONSOLE;" 606 PrecompiledHeaderFile="" 607 /> 608 <Tool 609 Name="VCManagedResourceCompilerTool" 610 /> 611 <Tool 612 Name="VCResourceCompilerTool" 613 /> 614 <Tool 615 Name="VCPreLinkEventTool" 616 /> 617 <Tool 618 Name="VCLinkerTool" 619 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 620 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 621 /> 622 <Tool 623 Name="VCALinkTool" 624 /> 625 <Tool 626 Name="VCManifestTool" 627 /> 628 <Tool 629 Name="VCXDCMakeTool" 630 /> 631 <Tool 632 Name="VCBscMakeTool" 633 /> 634 <Tool 635 Name="VCFxCopTool" 636 /> 637 <Tool 638 Name="VCAppVerifierTool" 639 /> 640 <Tool 641 Name="VCWebDeploymentTool" 642 /> 643 <Tool 644 Name="VCPostBuildEventTool" 645 /> 646 </Configuration> 647 <Configuration 648 Name="Debug-Static|Pocket PC 2003 (ARMV4)" 509 Name="Debug|Pocket PC 2003 (ARMV4)" 649 510 ConfigurationType="1" 650 511 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" … … 712 573 </Configuration> 713 574 <Configuration 714 Name="Debug -Static|Smartphone 2003 (ARMV4)"575 Name="Debug|Smartphone 2003 (ARMV4)" 715 576 ConfigurationType="1" 716 577 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" … … 778 639 </Configuration> 779 640 <Configuration 780 Name="Debug -Static|x64"641 Name="Debug|x64" 781 642 ConfigurationType="1" 782 643 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-common-defaults.vsprops" … … 849 710 </Configuration> 850 711 <Configuration 851 Name="Release-Dynamic|Win32" 852 ConfigurationType="1" 853 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 854 UseOfMFC="0" 855 ATLMinimizesCRunTimeLibraryUsage="false" 856 CharacterSet="2" 857 > 858 <Tool 859 Name="VCPreBuildEventTool" 860 /> 861 <Tool 862 Name="VCCustomBuildTool" 863 /> 864 <Tool 865 Name="VCXMLDataGeneratorTool" 866 /> 867 <Tool 868 Name="VCWebServiceProxyGeneratorTool" 869 /> 870 <Tool 871 Name="VCMIDLTool" 872 /> 873 <Tool 874 Name="VCCLCompilerTool" 875 AdditionalIncludeDirectories="../include,../../pjlib/include" 876 PreprocessorDefinitions="_CONSOLE;" 877 PrecompiledHeaderFile="" 878 /> 879 <Tool 880 Name="VCManagedResourceCompilerTool" 881 /> 882 <Tool 883 Name="VCResourceCompilerTool" 884 /> 885 <Tool 886 Name="VCPreLinkEventTool" 887 /> 888 <Tool 889 Name="VCLinkerTool" 890 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 891 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 892 /> 893 <Tool 894 Name="VCALinkTool" 895 /> 896 <Tool 897 Name="VCManifestTool" 898 /> 899 <Tool 900 Name="VCXDCMakeTool" 901 /> 902 <Tool 903 Name="VCBscMakeTool" 904 /> 905 <Tool 906 Name="VCFxCopTool" 907 /> 908 <Tool 909 Name="VCAppVerifierTool" 910 /> 911 <Tool 912 Name="VCWebDeploymentTool" 913 /> 914 <Tool 915 Name="VCPostBuildEventTool" 916 /> 917 </Configuration> 918 <Configuration 919 Name="Release-Dynamic|Pocket PC 2003 (ARMV4)" 920 ConfigurationType="1" 921 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 712 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 713 ConfigurationType="1" 714 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 922 715 ATLMinimizesCRunTimeLibraryUsage="false" 923 716 CharacterSet="1" … … 956 749 Name="VCLinkerTool" 957 750 AdditionalDependencies="ws2.lib" 958 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 2003ppc-vc$(VSVer)-$(ConfigurationName).exe"751 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 959 752 /> 960 753 <Tool … … 983 776 </Configuration> 984 777 <Configuration 985 Name=" Release-Dynamic|Smartphone 2003 (ARMV4)"986 ConfigurationType="1" 987 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops"778 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 779 ConfigurationType="1" 780 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 988 781 ATLMinimizesCRunTimeLibraryUsage="false" 989 782 CharacterSet="1" … … 1022 815 Name="VCLinkerTool" 1023 816 AdditionalDependencies="ws2.lib" 1024 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 2003sp-vc$(VSVer)-$(ConfigurationName).exe"817 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 1025 818 /> 1026 819 <Tool … … 1049 842 </Configuration> 1050 843 <Configuration 1051 Name=" Release-Dynamic|x64"1052 ConfigurationType="1" 1053 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops"844 Name="Debug-Static|Win32" 845 ConfigurationType="1" 846 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 1054 847 UseOfMFC="0" 1055 848 ATLMinimizesCRunTimeLibraryUsage="false" … … 1070 863 <Tool 1071 864 Name="VCMIDLTool" 1072 TargetEnvironment="3"1073 865 /> 1074 866 <Tool … … 1091 883 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 1092 884 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1093 TargetMachine="17"1094 885 /> 1095 886 <Tool … … 1119 910 </Configuration> 1120 911 <Configuration 1121 Name="Debug-Dynamic|Win32" 1122 ConfigurationType="1" 1123 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 1124 UseOfMFC="0" 1125 ATLMinimizesCRunTimeLibraryUsage="false" 1126 CharacterSet="2" 1127 > 1128 <Tool 1129 Name="VCPreBuildEventTool" 1130 /> 1131 <Tool 1132 Name="VCCustomBuildTool" 1133 /> 1134 <Tool 1135 Name="VCXMLDataGeneratorTool" 1136 /> 1137 <Tool 1138 Name="VCWebServiceProxyGeneratorTool" 1139 /> 1140 <Tool 1141 Name="VCMIDLTool" 1142 /> 1143 <Tool 1144 Name="VCCLCompilerTool" 1145 AdditionalIncludeDirectories="../include,../../pjlib/include" 1146 PreprocessorDefinitions="_CONSOLE;" 1147 PrecompiledHeaderFile="" 1148 /> 1149 <Tool 1150 Name="VCManagedResourceCompilerTool" 1151 /> 1152 <Tool 1153 Name="VCResourceCompilerTool" 1154 /> 1155 <Tool 1156 Name="VCPreLinkEventTool" 1157 /> 1158 <Tool 1159 Name="VCLinkerTool" 1160 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 1161 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1162 /> 1163 <Tool 1164 Name="VCALinkTool" 1165 /> 1166 <Tool 1167 Name="VCManifestTool" 1168 /> 1169 <Tool 1170 Name="VCXDCMakeTool" 1171 /> 1172 <Tool 1173 Name="VCBscMakeTool" 1174 /> 1175 <Tool 1176 Name="VCFxCopTool" 1177 /> 1178 <Tool 1179 Name="VCAppVerifierTool" 1180 /> 1181 <Tool 1182 Name="VCWebDeploymentTool" 1183 /> 1184 <Tool 1185 Name="VCPostBuildEventTool" 1186 /> 1187 </Configuration> 1188 <Configuration 1189 Name="Debug-Dynamic|Pocket PC 2003 (ARMV4)" 1190 ConfigurationType="1" 1191 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 912 Name="Debug-Static|Pocket PC 2003 (ARMV4)" 913 ConfigurationType="1" 914 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 1192 915 ATLMinimizesCRunTimeLibraryUsage="false" 1193 916 CharacterSet="1" … … 1253 976 </Configuration> 1254 977 <Configuration 1255 Name="Debug- Dynamic|Smartphone 2003 (ARMV4)"1256 ConfigurationType="1" 1257 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug- dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops"978 Name="Debug-Static|Smartphone 2003 (ARMV4)" 979 ConfigurationType="1" 980 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 1258 981 ATLMinimizesCRunTimeLibraryUsage="false" 1259 982 CharacterSet="1" … … 1319 1042 </Configuration> 1320 1043 <Configuration 1321 Name="Debug- Dynamic|x64"1322 ConfigurationType="1" 1323 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug- dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-common-defaults.vsprops"1044 Name="Debug-Static|x64" 1045 ConfigurationType="1" 1046 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-common-defaults.vsprops" 1324 1047 UseOfMFC="0" 1325 1048 ATLMinimizesCRunTimeLibraryUsage="false" … … 1390 1113 </Configuration> 1391 1114 <Configuration 1392 Name="Release-Static|Win32" 1393 ConfigurationType="1" 1394 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 1395 UseOfMFC="0" 1396 ATLMinimizesCRunTimeLibraryUsage="false" 1397 CharacterSet="2" 1398 > 1399 <Tool 1400 Name="VCPreBuildEventTool" 1401 /> 1402 <Tool 1403 Name="VCCustomBuildTool" 1404 /> 1405 <Tool 1406 Name="VCXMLDataGeneratorTool" 1407 /> 1408 <Tool 1409 Name="VCWebServiceProxyGeneratorTool" 1410 /> 1411 <Tool 1412 Name="VCMIDLTool" 1413 /> 1414 <Tool 1415 Name="VCCLCompilerTool" 1416 AdditionalIncludeDirectories="../include,../../pjlib/include" 1417 PreprocessorDefinitions="_CONSOLE;" 1418 PrecompiledHeaderFile="" 1419 /> 1420 <Tool 1421 Name="VCManagedResourceCompilerTool" 1422 /> 1423 <Tool 1424 Name="VCResourceCompilerTool" 1425 /> 1426 <Tool 1427 Name="VCPreLinkEventTool" 1428 /> 1429 <Tool 1430 Name="VCLinkerTool" 1431 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 1432 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1433 /> 1434 <Tool 1435 Name="VCALinkTool" 1436 /> 1437 <Tool 1438 Name="VCManifestTool" 1439 /> 1440 <Tool 1441 Name="VCXDCMakeTool" 1442 /> 1443 <Tool 1444 Name="VCBscMakeTool" 1445 /> 1446 <Tool 1447 Name="VCFxCopTool" 1448 /> 1449 <Tool 1450 Name="VCAppVerifierTool" 1451 /> 1452 <Tool 1453 Name="VCWebDeploymentTool" 1454 /> 1455 <Tool 1456 Name="VCPostBuildEventTool" 1457 /> 1458 </Configuration> 1459 <Configuration 1460 Name="Release-Static|Pocket PC 2003 (ARMV4)" 1461 ConfigurationType="1" 1462 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 1115 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 1116 ConfigurationType="1" 1117 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1463 1118 ATLMinimizesCRunTimeLibraryUsage="false" 1464 1119 CharacterSet="1" … … 1497 1152 Name="VCLinkerTool" 1498 1153 AdditionalDependencies="ws2.lib" 1499 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 2003ppc-vc$(VSVer)-$(ConfigurationName).exe"1154 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 1500 1155 /> 1501 1156 <Tool … … 1524 1179 </Configuration> 1525 1180 <Configuration 1526 Name=" Release-Static|Smartphone 2003 (ARMV4)"1527 ConfigurationType="1" 1528 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops"1181 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 1182 ConfigurationType="1" 1183 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1529 1184 ATLMinimizesCRunTimeLibraryUsage="false" 1530 1185 CharacterSet="1" … … 1563 1218 Name="VCLinkerTool" 1564 1219 AdditionalDependencies="ws2.lib" 1565 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 2003sp-vc$(VSVer)-$(ConfigurationName).exe"1220 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 1566 1221 /> 1567 1222 <Tool … … 1590 1245 </Configuration> 1591 1246 <Configuration 1592 Name="Release- Static|x64"1593 ConfigurationType="1" 1594 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release- static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops"1247 Name="Release-Dynamic|Win32" 1248 ConfigurationType="1" 1249 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 1595 1250 UseOfMFC="0" 1596 1251 ATLMinimizesCRunTimeLibraryUsage="false" … … 1611 1266 <Tool 1612 1267 Name="VCMIDLTool" 1613 TargetEnvironment="3"1614 1268 /> 1615 1269 <Tool … … 1632 1286 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 1633 1287 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1634 TargetMachine="17"1635 1288 /> 1636 1289 <Tool … … 1660 1313 </Configuration> 1661 1314 <Configuration 1662 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 1663 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1315 Name="Release-Dynamic|Pocket PC 2003 (ARMV4)" 1316 ConfigurationType="1" 1317 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 1664 1318 ATLMinimizesCRunTimeLibraryUsage="false" 1665 1319 CharacterSet="1" 1666 ConfigurationType="1"1667 1320 > 1668 1321 <Tool … … 1699 1352 Name="VCLinkerTool" 1700 1353 AdditionalDependencies="ws2.lib" 1701 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"1354 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm2003ppc-vc$(VSVer)-$(ConfigurationName).exe" 1702 1355 /> 1703 1356 <Tool … … 1726 1379 </Configuration> 1727 1380 <Configuration 1728 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 1729 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1381 Name="Release-Dynamic|Smartphone 2003 (ARMV4)" 1382 ConfigurationType="1" 1383 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 1730 1384 ATLMinimizesCRunTimeLibraryUsage="false" 1731 1385 CharacterSet="1" 1732 ConfigurationType="1"1733 1386 > 1734 1387 <Tool … … 1765 1418 Name="VCLinkerTool" 1766 1419 AdditionalDependencies="ws2.lib" 1767 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"1420 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm2003sp-vc$(VSVer)-$(ConfigurationName).exe" 1768 1421 /> 1769 1422 <Tool … … 1792 1445 </Configuration> 1793 1446 <Configuration 1794 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 1795 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1447 Name="Release-Dynamic|x64" 1448 ConfigurationType="1" 1449 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops" 1450 UseOfMFC="0" 1451 ATLMinimizesCRunTimeLibraryUsage="false" 1452 CharacterSet="2" 1453 > 1454 <Tool 1455 Name="VCPreBuildEventTool" 1456 /> 1457 <Tool 1458 Name="VCCustomBuildTool" 1459 /> 1460 <Tool 1461 Name="VCXMLDataGeneratorTool" 1462 /> 1463 <Tool 1464 Name="VCWebServiceProxyGeneratorTool" 1465 /> 1466 <Tool 1467 Name="VCMIDLTool" 1468 TargetEnvironment="3" 1469 /> 1470 <Tool 1471 Name="VCCLCompilerTool" 1472 AdditionalIncludeDirectories="../include,../../pjlib/include" 1473 PreprocessorDefinitions="_CONSOLE;" 1474 PrecompiledHeaderFile="" 1475 /> 1476 <Tool 1477 Name="VCManagedResourceCompilerTool" 1478 /> 1479 <Tool 1480 Name="VCResourceCompilerTool" 1481 /> 1482 <Tool 1483 Name="VCPreLinkEventTool" 1484 /> 1485 <Tool 1486 Name="VCLinkerTool" 1487 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 1488 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1489 TargetMachine="17" 1490 /> 1491 <Tool 1492 Name="VCALinkTool" 1493 /> 1494 <Tool 1495 Name="VCManifestTool" 1496 /> 1497 <Tool 1498 Name="VCXDCMakeTool" 1499 /> 1500 <Tool 1501 Name="VCBscMakeTool" 1502 /> 1503 <Tool 1504 Name="VCFxCopTool" 1505 /> 1506 <Tool 1507 Name="VCAppVerifierTool" 1508 /> 1509 <Tool 1510 Name="VCWebDeploymentTool" 1511 /> 1512 <Tool 1513 Name="VCPostBuildEventTool" 1514 /> 1515 </Configuration> 1516 <Configuration 1517 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 1518 ConfigurationType="1" 1519 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1796 1520 ATLMinimizesCRunTimeLibraryUsage="false" 1797 1521 CharacterSet="1" 1798 ConfigurationType="1"1799 1522 > 1800 1523 <Tool … … 1858 1581 </Configuration> 1859 1582 <Configuration 1860 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 1861 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1583 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 1584 ConfigurationType="1" 1585 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1862 1586 ATLMinimizesCRunTimeLibraryUsage="false" 1863 1587 CharacterSet="1" 1864 ConfigurationType="1"1865 1588 > 1866 1589 <Tool … … 1924 1647 </Configuration> 1925 1648 <Configuration 1926 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 1927 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1649 Name="Debug-Dynamic|Win32" 1650 ConfigurationType="1" 1651 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 1652 UseOfMFC="0" 1653 ATLMinimizesCRunTimeLibraryUsage="false" 1654 CharacterSet="2" 1655 > 1656 <Tool 1657 Name="VCPreBuildEventTool" 1658 /> 1659 <Tool 1660 Name="VCCustomBuildTool" 1661 /> 1662 <Tool 1663 Name="VCXMLDataGeneratorTool" 1664 /> 1665 <Tool 1666 Name="VCWebServiceProxyGeneratorTool" 1667 /> 1668 <Tool 1669 Name="VCMIDLTool" 1670 /> 1671 <Tool 1672 Name="VCCLCompilerTool" 1673 AdditionalIncludeDirectories="../include,../../pjlib/include" 1674 PreprocessorDefinitions="_CONSOLE;" 1675 PrecompiledHeaderFile="" 1676 /> 1677 <Tool 1678 Name="VCManagedResourceCompilerTool" 1679 /> 1680 <Tool 1681 Name="VCResourceCompilerTool" 1682 /> 1683 <Tool 1684 Name="VCPreLinkEventTool" 1685 /> 1686 <Tool 1687 Name="VCLinkerTool" 1688 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 1689 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1690 /> 1691 <Tool 1692 Name="VCALinkTool" 1693 /> 1694 <Tool 1695 Name="VCManifestTool" 1696 /> 1697 <Tool 1698 Name="VCXDCMakeTool" 1699 /> 1700 <Tool 1701 Name="VCBscMakeTool" 1702 /> 1703 <Tool 1704 Name="VCFxCopTool" 1705 /> 1706 <Tool 1707 Name="VCAppVerifierTool" 1708 /> 1709 <Tool 1710 Name="VCWebDeploymentTool" 1711 /> 1712 <Tool 1713 Name="VCPostBuildEventTool" 1714 /> 1715 </Configuration> 1716 <Configuration 1717 Name="Debug-Dynamic|Pocket PC 2003 (ARMV4)" 1718 ConfigurationType="1" 1719 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 1928 1720 ATLMinimizesCRunTimeLibraryUsage="false" 1929 1721 CharacterSet="1" 1930 ConfigurationType="1"1931 1722 > 1932 1723 <Tool … … 1963 1754 Name="VCLinkerTool" 1964 1755 AdditionalDependencies="ws2.lib" 1965 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"1756 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm2003ppc-vc$(VSVer)-$(ConfigurationName).exe" 1966 1757 /> 1967 1758 <Tool … … 1990 1781 </Configuration> 1991 1782 <Configuration 1992 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 1993 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1783 Name="Debug-Dynamic|Smartphone 2003 (ARMV4)" 1784 ConfigurationType="1" 1785 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 1994 1786 ATLMinimizesCRunTimeLibraryUsage="false" 1995 1787 CharacterSet="1" 1996 ConfigurationType="1"1997 1788 > 1998 1789 <Tool … … 2029 1820 Name="VCLinkerTool" 2030 1821 AdditionalDependencies="ws2.lib" 2031 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"1822 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm2003sp-vc$(VSVer)-$(ConfigurationName).exe" 2032 1823 /> 2033 1824 <Tool … … 2056 1847 </Configuration> 2057 1848 <Configuration 2058 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 2059 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1849 Name="Debug-Dynamic|x64" 1850 ConfigurationType="1" 1851 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-common-defaults.vsprops" 1852 UseOfMFC="0" 1853 ATLMinimizesCRunTimeLibraryUsage="false" 1854 CharacterSet="2" 1855 > 1856 <Tool 1857 Name="VCPreBuildEventTool" 1858 /> 1859 <Tool 1860 Name="VCCustomBuildTool" 1861 /> 1862 <Tool 1863 Name="VCXMLDataGeneratorTool" 1864 /> 1865 <Tool 1866 Name="VCWebServiceProxyGeneratorTool" 1867 /> 1868 <Tool 1869 Name="VCMIDLTool" 1870 TargetEnvironment="3" 1871 /> 1872 <Tool 1873 Name="VCCLCompilerTool" 1874 AdditionalIncludeDirectories="../include,../../pjlib/include" 1875 PreprocessorDefinitions="_CONSOLE;" 1876 PrecompiledHeaderFile="" 1877 DebugInformationFormat="3" 1878 /> 1879 <Tool 1880 Name="VCManagedResourceCompilerTool" 1881 /> 1882 <Tool 1883 Name="VCResourceCompilerTool" 1884 /> 1885 <Tool 1886 Name="VCPreLinkEventTool" 1887 /> 1888 <Tool 1889 Name="VCLinkerTool" 1890 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 1891 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1892 TargetMachine="17" 1893 /> 1894 <Tool 1895 Name="VCALinkTool" 1896 /> 1897 <Tool 1898 Name="VCManifestTool" 1899 /> 1900 <Tool 1901 Name="VCXDCMakeTool" 1902 /> 1903 <Tool 1904 Name="VCBscMakeTool" 1905 /> 1906 <Tool 1907 Name="VCFxCopTool" 1908 /> 1909 <Tool 1910 Name="VCAppVerifierTool" 1911 /> 1912 <Tool 1913 Name="VCWebDeploymentTool" 1914 /> 1915 <Tool 1916 Name="VCPostBuildEventTool" 1917 /> 1918 </Configuration> 1919 <Configuration 1920 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 1921 ConfigurationType="1" 1922 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 2060 1923 ATLMinimizesCRunTimeLibraryUsage="false" 2061 1924 CharacterSet="1" 2062 ConfigurationType="1"2063 1925 > 2064 1926 <Tool … … 2122 1984 </Configuration> 2123 1985 <Configuration 2124 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 2125 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1986 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 1987 ConfigurationType="1" 1988 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 2126 1989 ATLMinimizesCRunTimeLibraryUsage="false" 2127 1990 CharacterSet="1" 2128 ConfigurationType="1"2129 1991 > 2130 1992 <Tool … … 2188 2050 </Configuration> 2189 2051 <Configuration 2190 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 2191 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 2052 Name="Release-Static|Win32" 2053 ConfigurationType="1" 2054 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 2055 UseOfMFC="0" 2056 ATLMinimizesCRunTimeLibraryUsage="false" 2057 CharacterSet="2" 2058 > 2059 <Tool 2060 Name="VCPreBuildEventTool" 2061 /> 2062 <Tool 2063 Name="VCCustomBuildTool" 2064 /> 2065 <Tool 2066 Name="VCXMLDataGeneratorTool" 2067 /> 2068 <Tool 2069 Name="VCWebServiceProxyGeneratorTool" 2070 /> 2071 <Tool 2072 Name="VCMIDLTool" 2073 /> 2074 <Tool 2075 Name="VCCLCompilerTool" 2076 AdditionalIncludeDirectories="../include,../../pjlib/include" 2077 PreprocessorDefinitions="_CONSOLE;" 2078 PrecompiledHeaderFile="" 2079 /> 2080 <Tool 2081 Name="VCManagedResourceCompilerTool" 2082 /> 2083 <Tool 2084 Name="VCResourceCompilerTool" 2085 /> 2086 <Tool 2087 Name="VCPreLinkEventTool" 2088 /> 2089 <Tool 2090 Name="VCLinkerTool" 2091 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 2092 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 2093 /> 2094 <Tool 2095 Name="VCALinkTool" 2096 /> 2097 <Tool 2098 Name="VCManifestTool" 2099 /> 2100 <Tool 2101 Name="VCXDCMakeTool" 2102 /> 2103 <Tool 2104 Name="VCBscMakeTool" 2105 /> 2106 <Tool 2107 Name="VCFxCopTool" 2108 /> 2109 <Tool 2110 Name="VCAppVerifierTool" 2111 /> 2112 <Tool 2113 Name="VCWebDeploymentTool" 2114 /> 2115 <Tool 2116 Name="VCPostBuildEventTool" 2117 /> 2118 </Configuration> 2119 <Configuration 2120 Name="Release-Static|Pocket PC 2003 (ARMV4)" 2121 ConfigurationType="1" 2122 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 2192 2123 ATLMinimizesCRunTimeLibraryUsage="false" 2193 2124 CharacterSet="1" 2194 ConfigurationType="1"2195 2125 > 2196 2126 <Tool … … 2227 2157 Name="VCLinkerTool" 2228 2158 AdditionalDependencies="ws2.lib" 2229 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"2159 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm2003ppc-vc$(VSVer)-$(ConfigurationName).exe" 2230 2160 /> 2231 2161 <Tool … … 2254 2184 </Configuration> 2255 2185 <Configuration 2256 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 2257 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 2186 Name="Release-Static|Smartphone 2003 (ARMV4)" 2187 ConfigurationType="1" 2188 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 2258 2189 ATLMinimizesCRunTimeLibraryUsage="false" 2259 2190 CharacterSet="1" 2260 ConfigurationType="1"2261 2191 > 2262 2192 <Tool … … 2293 2223 Name="VCLinkerTool" 2294 2224 AdditionalDependencies="ws2.lib" 2295 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"2225 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-wm2003sp-vc$(VSVer)-$(ConfigurationName).exe" 2296 2226 /> 2297 2227 <Tool … … 2320 2250 </Configuration> 2321 2251 <Configuration 2252 Name="Release-Static|x64" 2253 ConfigurationType="1" 2254 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops" 2255 UseOfMFC="0" 2256 ATLMinimizesCRunTimeLibraryUsage="false" 2257 CharacterSet="2" 2258 > 2259 <Tool 2260 Name="VCPreBuildEventTool" 2261 /> 2262 <Tool 2263 Name="VCCustomBuildTool" 2264 /> 2265 <Tool 2266 Name="VCXMLDataGeneratorTool" 2267 /> 2268 <Tool 2269 Name="VCWebServiceProxyGeneratorTool" 2270 /> 2271 <Tool 2272 Name="VCMIDLTool" 2273 TargetEnvironment="3" 2274 /> 2275 <Tool 2276 Name="VCCLCompilerTool" 2277 AdditionalIncludeDirectories="../include,../../pjlib/include" 2278 PreprocessorDefinitions="_CONSOLE;" 2279 PrecompiledHeaderFile="" 2280 /> 2281 <Tool 2282 Name="VCManagedResourceCompilerTool" 2283 /> 2284 <Tool 2285 Name="VCResourceCompilerTool" 2286 /> 2287 <Tool 2288 Name="VCPreLinkEventTool" 2289 /> 2290 <Tool 2291 Name="VCLinkerTool" 2292 AdditionalDependencies="netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib ole32.lib" 2293 OutputFile="..\bin\pjlib-util-test-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 2294 TargetMachine="17" 2295 /> 2296 <Tool 2297 Name="VCALinkTool" 2298 /> 2299 <Tool 2300 Name="VCManifestTool" 2301 /> 2302 <Tool 2303 Name="VCXDCMakeTool" 2304 /> 2305 <Tool 2306 Name="VCBscMakeTool" 2307 /> 2308 <Tool 2309 Name="VCFxCopTool" 2310 /> 2311 <Tool 2312 Name="VCAppVerifierTool" 2313 /> 2314 <Tool 2315 Name="VCWebDeploymentTool" 2316 /> 2317 <Tool 2318 Name="VCPostBuildEventTool" 2319 /> 2320 </Configuration> 2321 <Configuration 2322 2322 Name="Release-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 2323 ConfigurationType="1" 2323 2324 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 2324 2325 ATLMinimizesCRunTimeLibraryUsage="false" 2325 2326 CharacterSet="1" 2326 ConfigurationType="1"2327 2327 > 2328 2328 <Tool … … 2387 2387 <Configuration 2388 2388 Name="Release-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 2389 ConfigurationType="1" 2389 2390 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 2390 2391 ATLMinimizesCRunTimeLibraryUsage="false" 2391 2392 CharacterSet="1" 2392 ConfigurationType="1"2393 2393 > 2394 2394 <Tool … … 3260 3260 </File> 3261 3261 <File 3262 RelativePath="..\src\pjlib-util-test\json_test.c" 3263 > 3264 </File> 3265 <File 3262 3266 RelativePath="..\src\pjlib-util-test\main.c" 3263 3267 > … … 3297 3301 </FileConfiguration> 3298 3302 <FileConfiguration 3303 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 3304 ExcludedFromBuild="true" 3305 > 3306 <Tool 3307 Name="VCCLCompilerTool" 3308 /> 3309 </FileConfiguration> 3310 <FileConfiguration 3311 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 3312 ExcludedFromBuild="true" 3313 > 3314 <Tool 3315 Name="VCCLCompilerTool" 3316 /> 3317 </FileConfiguration> 3318 <FileConfiguration 3299 3319 Name="Debug|Win32" 3300 3320 > … … 3331 3351 </FileConfiguration> 3332 3352 <FileConfiguration 3353 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 3354 ExcludedFromBuild="true" 3355 > 3356 <Tool 3357 Name="VCCLCompilerTool" 3358 /> 3359 </FileConfiguration> 3360 <FileConfiguration 3361 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 3362 ExcludedFromBuild="true" 3363 > 3364 <Tool 3365 Name="VCCLCompilerTool" 3366 /> 3367 </FileConfiguration> 3368 <FileConfiguration 3333 3369 Name="Debug-Static|Win32" 3334 3370 > … … 3365 3401 </FileConfiguration> 3366 3402 <FileConfiguration 3403 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 3404 ExcludedFromBuild="true" 3405 > 3406 <Tool 3407 Name="VCCLCompilerTool" 3408 /> 3409 </FileConfiguration> 3410 <FileConfiguration 3411 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 3412 ExcludedFromBuild="true" 3413 > 3414 <Tool 3415 Name="VCCLCompilerTool" 3416 /> 3417 </FileConfiguration> 3418 <FileConfiguration 3367 3419 Name="Release-Dynamic|Win32" 3368 3420 > … … 3399 3451 </FileConfiguration> 3400 3452 <FileConfiguration 3453 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 3454 ExcludedFromBuild="true" 3455 > 3456 <Tool 3457 Name="VCCLCompilerTool" 3458 /> 3459 </FileConfiguration> 3460 <FileConfiguration 3461 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 3462 ExcludedFromBuild="true" 3463 > 3464 <Tool 3465 Name="VCCLCompilerTool" 3466 /> 3467 </FileConfiguration> 3468 <FileConfiguration 3401 3469 Name="Debug-Dynamic|Win32" 3402 3470 > … … 3433 3501 </FileConfiguration> 3434 3502 <FileConfiguration 3503 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 3504 ExcludedFromBuild="true" 3505 > 3506 <Tool 3507 Name="VCCLCompilerTool" 3508 /> 3509 </FileConfiguration> 3510 <FileConfiguration 3511 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 3512 ExcludedFromBuild="true" 3513 > 3514 <Tool 3515 Name="VCCLCompilerTool" 3516 /> 3517 </FileConfiguration> 3518 <FileConfiguration 3435 3519 Name="Release-Static|Win32" 3436 3520 > … … 3464 3548 AdditionalIncludeDirectories="" 3465 3549 PreprocessorDefinitions="" 3466 />3467 </FileConfiguration>3468 <FileConfiguration3469 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)"3470 ExcludedFromBuild="true"3471 >3472 <Tool3473 Name="VCCLCompilerTool"3474 />3475 </FileConfiguration>3476 <FileConfiguration3477 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"3478 ExcludedFromBuild="true"3479 >3480 <Tool3481 Name="VCCLCompilerTool"3482 />3483 </FileConfiguration>3484 <FileConfiguration3485 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)"3486 ExcludedFromBuild="true"3487 >3488 <Tool3489 Name="VCCLCompilerTool"3490 />3491 </FileConfiguration>3492 <FileConfiguration3493 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"3494 ExcludedFromBuild="true"3495 >3496 <Tool3497 Name="VCCLCompilerTool"3498 />3499 </FileConfiguration>3500 <FileConfiguration3501 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)"3502 ExcludedFromBuild="true"3503 >3504 <Tool3505 Name="VCCLCompilerTool"3506 />3507 </FileConfiguration>3508 <FileConfiguration3509 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)"3510 ExcludedFromBuild="true"3511 >3512 <Tool3513 Name="VCCLCompilerTool"3514 />3515 </FileConfiguration>3516 <FileConfiguration3517 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"3518 ExcludedFromBuild="true"3519 >3520 <Tool3521 Name="VCCLCompilerTool"3522 />3523 </FileConfiguration>3524 <FileConfiguration3525 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"3526 ExcludedFromBuild="true"3527 >3528 <Tool3529 Name="VCCLCompilerTool"3530 />3531 </FileConfiguration>3532 <FileConfiguration3533 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"3534 ExcludedFromBuild="true"3535 >3536 <Tool3537 Name="VCCLCompilerTool"3538 />3539 </FileConfiguration>3540 <FileConfiguration3541 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"3542 ExcludedFromBuild="true"3543 >3544 <Tool3545 Name="VCCLCompilerTool"3546 3550 /> 3547 3551 </FileConfiguration> -
pjproject/trunk/pjlib-util/include/pjlib-util.h
r4688 r4704 56 56 #include <pjlib-util/xml.h> 57 57 58 /* JSON */ 59 #include <pjlib-util/json.h> 60 58 61 /* Old STUN */ 59 62 #include <pjlib-util/stun_simple.h> -
pjproject/trunk/pjlib-util/include/pjlib-util/errno.h
r4440 r4704 118 118 119 119 120 /************************************************************ 121 * JSON ERROR 122 ***********************************************************/ 123 /** 124 * @hideinitializer 125 * General invalid JSON message. 126 */ 127 #define PJLIB_UTIL_EINJSON (PJLIB_UTIL_ERRNO_START+30) /* 320030 */ 128 120 129 121 130 /************************************************************ -
pjproject/trunk/pjlib-util/src/pjlib-util-test/test.c
r3553 r4704 73 73 #endif 74 74 75 #if INCLUDE_JSON_TEST 76 DO_TEST(json_test()); 77 #endif 78 75 79 #if INCLUDE_ENCRYPTION_TEST 76 80 DO_TEST(encryption_test()); -
pjproject/trunk/pjlib-util/src/pjlib-util-test/test.h
r3553 r4704 21 21 22 22 #define INCLUDE_XML_TEST 1 23 #define INCLUDE_JSON_TEST 1 23 24 #define INCLUDE_ENCRYPTION_TEST 1 24 25 #define INCLUDE_STUN_TEST 1 … … 27 28 28 29 extern int xml_test(void); 30 extern int json_test(void); 29 31 extern int encryption_test(); 30 32 extern int encryption_benchmark(); -
pjproject/trunk/pjlib-util/src/pjlib-util/errno.c
r4613 r4704 51 51 /* XML errors */ 52 52 PJ_BUILD_ERR( PJLIB_UTIL_EINXML, "Invalid XML message" ), 53 54 /* JSON errors */ 55 PJ_BUILD_ERR( PJLIB_UTIL_EINJSON, "Invalid JSON document" ), 53 56 54 57 /* DNS errors */ -
pjproject/trunk/pjlib/build/os-auto.mak.in
r4656 r4704 24 24 # Additional LDFLAGS for pjlib-test 25 25 # 26 export TEST_LDFLAGS += @LDFLAGS@ @LIBS@ 26 # Disabled, as this causes duplicated LDFLAGS, which may raise linking errors 27 #export TEST_LDFLAGS += @LDFLAGS@ @LIBS@ 27 28 28 29 # -
pjproject/trunk/pjlib/include/pj/compat/cc_gcc.h
r4624 r4704 64 64 65 65 #define PJ_INT64(val) val##LL 66 #define PJ_UINT64(val) val## LLU66 #define PJ_UINT64(val) val##ULL 67 67 #define PJ_INT64_FMT "L" 68 68 -
pjproject/trunk/pjlib/include/pj/string.h
r4440 r4704 576 576 577 577 /** 578 * Convert string to float. 579 * 580 * @param str the string. 581 * 582 * @return the value. 583 */ 584 PJ_DECL(float) pj_strtof(const pj_str_t *str); 585 586 /** 578 587 * Utility to convert unsigned integer to string. Note that the 579 588 * string will be NULL terminated. -
pjproject/trunk/pjlib/include/pj/types.h
r4537 r4704 87 87 #endif 88 88 89 90 /** Status is OK. */ 91 #define PJ_SUCCESS 0 92 93 /** True value. */ 94 #define PJ_TRUE 1 95 96 /** False value. */ 97 #define PJ_FALSE 0 89 /** Some constants */ 90 enum pj_constants_ 91 { 92 /** Status is OK. */ 93 PJ_SUCCESS=0, 94 95 /** True value. */ 96 PJ_TRUE=1, 97 98 /** False value. */ 99 PJ_FALSE=0 100 }; 98 101 99 102 /** -
pjproject/trunk/pjlib/src/pj/ioqueue_epoll.c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
pjproject/trunk/pjlib/src/pj/string.c
r4537 r4704 176 176 } 177 177 178 PJ_DEF(float) pj_strtof(const pj_str_t *str) 179 { 180 pj_str_t part; 181 char *pdot; 182 float val; 183 184 if (str->slen == 0) 185 return 0; 186 187 pdot = (char*)pj_memchr(str->ptr, '.', str->slen); 188 part.ptr = str->ptr; 189 part.slen = pdot ? pdot - str->ptr : str->slen; 190 191 if (part.slen) 192 val = (float)pj_strtol(&part); 193 else 194 val = 0; 195 196 if (pdot) { 197 part.ptr = pdot + 1; 198 part.slen = (str->ptr + str->slen - pdot - 1); 199 if (part.slen) { 200 pj_str_t endptr; 201 float fpart, fdiv; 202 int i; 203 fpart = (float)pj_strtoul2(&part, &endptr, 10); 204 fdiv = 1.0; 205 for (i=0; i<(part.slen - endptr.slen); ++i) 206 fdiv = fdiv * 10; 207 if (val >= 0) 208 val += (fpart / fdiv); 209 else 210 val -= (fpart / fdiv); 211 } 212 } 213 return val; 214 } 215 178 216 PJ_DEF(int) pj_utoa(unsigned long val, char *buf) 179 217 { -
pjproject/trunk/pjmedia/include/pjmedia-videodev/videodev.h
r4167 r4704 132 132 * Device index constants. 133 133 */ 134 enum 134 enum pjmedia_vid_dev_std_index 135 135 { 136 136 /** -
pjproject/trunk/pjproject-vs8.sln
r4537 r4704 36 36 ProjectSection(ProjectDependencies) = postProject 37 37 {23D7679C-764C-4E02-8B29-BB882CEEEFE2} = {23D7679C-764C-4E02-8B29-BB882CEEEFE2} 38 {B82CDD25-6903-430E-BD38-D8129A2015C1} = {B82CDD25-6903-430E-BD38-D8129A2015C1} 38 39 EndProjectSection 39 40 EndProject … … 101 102 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpjproject", "pjsip-apps\build\libpjproject.vcproj", "{23D7679C-764C-4E02-8B29-BB882CEEEFE2}" 102 103 ProjectSection(ProjectDependencies) = postProject 104 {B82CDD25-6903-430E-BD38-D8129A2015C1} = {B82CDD25-6903-430E-BD38-D8129A2015C1} 103 105 {2BB84911-C1B4-4747-B93D-36AA82CC5031} = {2BB84911-C1B4-4747-B93D-36AA82CC5031} 104 106 {E8A3F6FA-AE1C-4C8E-A0B6-9C8480324EAA} = {E8A3F6FA-AE1C-4C8E-A0B6-9C8480324EAA} … … 117 119 {DA0E03ED-53A7-4050-8A85-90541C5509F8} = {DA0E03ED-53A7-4050-8A85-90541C5509F8} 118 120 {B5FE16F8-3EDB-4110-BD80-B4238CC01E8D} = {B5FE16F8-3EDB-4110-BD80-B4238CC01E8D} 121 {9CA0FDFB-2172-41FC-B7F1-5CE915EDCB37} = {9CA0FDFB-2172-41FC-B7F1-5CE915EDCB37} 119 122 {E53AA5FF-B737-40AA-BD13-387EFA99023D} = {E53AA5FF-B737-40AA-BD13-387EFA99023D} 120 123 {A1989FF3-9894-40F4-B5A6-6EA364476E45} = {A1989FF3-9894-40F4-B5A6-6EA364476E45} 121 124 {F0DBAA03-1BA3-4E3B-A2CA-727E3D3AB858} = {F0DBAA03-1BA3-4E3B-A2CA-727E3D3AB858} 122 {9CA0FDFB-2172-41FC-B7F1-5CE915EDCB37} = {9CA0FDFB-2172-41FC-B7F1-5CE915EDCB37}123 125 EndProjectSection 124 126 EndProject … … 136 138 EndProject 137 139 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libbaseclasses", "third_party\build\baseclasses\libbaseclasses.vcproj", "{E8A3F6FA-AE1C-4C8E-A0B6-9C8480324EAA}" 140 EndProject 141 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pjsua2_lib", "pjsip\build\pjsua2_lib.vcproj", "{B82CDD25-6903-430E-BD38-D8129A2015C1}" 138 142 EndProject 139 143 Global … … 3173 3177 {E8A3F6FA-AE1C-4C8E-A0B6-9C8480324EAA}.Release-Static|x64.ActiveCfg = Release-Static|x64 3174 3178 {E8A3F6FA-AE1C-4C8E-A0B6-9C8480324EAA}.Release-Static|x64.Build.0 = Release-Static|x64 3179 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4) 3180 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4) 3181 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4) 3182 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Smartphone 2003 (ARMV4) 3183 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Smartphone 2003 (ARMV4).Build.0 = Debug|Smartphone 2003 (ARMV4) 3184 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Smartphone 2003 (ARMV4).Deploy.0 = Debug|Smartphone 2003 (ARMV4) 3185 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Win32.ActiveCfg = Debug|Win32 3186 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Win32.Build.0 = Debug|Win32 3187 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 3188 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 3189 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 3190 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 3191 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 3192 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Standard SDK (ARMV4I) 3193 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Debug|Windows Mobile 6 Standard SDK (ARMV4I) 3194 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|Windows Mobile 6 Standard SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 6 Standard SDK (ARMV4I) 3195 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|x64.ActiveCfg = Debug|x64 3196 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug|x64.Build.0 = Debug|x64 3197 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Pocket PC 2003 (ARMV4).ActiveCfg = Debug-Dynamic|Pocket PC 2003 (ARMV4) 3198 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Pocket PC 2003 (ARMV4).Build.0 = Debug-Dynamic|Pocket PC 2003 (ARMV4) 3199 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Pocket PC 2003 (ARMV4).Deploy.0 = Debug-Dynamic|Pocket PC 2003 (ARMV4) 3200 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Smartphone 2003 (ARMV4).ActiveCfg = Debug-Dynamic|Smartphone 2003 (ARMV4) 3201 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Smartphone 2003 (ARMV4).Build.0 = Debug-Dynamic|Smartphone 2003 (ARMV4) 3202 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Smartphone 2003 (ARMV4).Deploy.0 = Debug-Dynamic|Smartphone 2003 (ARMV4) 3203 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Win32.ActiveCfg = Debug-Dynamic|Win32 3204 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Win32.Build.0 = Debug-Dynamic|Win32 3205 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3206 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3207 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3208 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3209 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3210 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I) 3211 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I) 3212 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I).Deploy.0 = Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I) 3213 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|x64.ActiveCfg = Debug-Dynamic|x64 3214 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Dynamic|x64.Build.0 = Debug-Dynamic|x64 3215 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Pocket PC 2003 (ARMV4).ActiveCfg = Debug-Static|Pocket PC 2003 (ARMV4) 3216 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Pocket PC 2003 (ARMV4).Build.0 = Debug-Static|Pocket PC 2003 (ARMV4) 3217 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Pocket PC 2003 (ARMV4).Deploy.0 = Debug-Static|Pocket PC 2003 (ARMV4) 3218 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Smartphone 2003 (ARMV4).ActiveCfg = Debug-Static|Smartphone 2003 (ARMV4) 3219 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Smartphone 2003 (ARMV4).Build.0 = Debug-Static|Smartphone 2003 (ARMV4) 3220 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Smartphone 2003 (ARMV4).Deploy.0 = Debug-Static|Smartphone 2003 (ARMV4) 3221 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Win32.ActiveCfg = Debug-Static|Win32 3222 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Win32.Build.0 = Debug-Static|Win32 3223 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3224 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3225 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3226 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3227 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3228 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I) 3229 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I) 3230 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I).Deploy.0 = Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I) 3231 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|x64.ActiveCfg = Debug-Static|x64 3232 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Debug-Static|x64.Build.0 = Debug-Static|x64 3233 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4) 3234 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4) 3235 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4) 3236 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Smartphone 2003 (ARMV4) 3237 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Smartphone 2003 (ARMV4).Build.0 = Release|Smartphone 2003 (ARMV4) 3238 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Smartphone 2003 (ARMV4).Deploy.0 = Release|Smartphone 2003 (ARMV4) 3239 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Win32.ActiveCfg = Release|Win32 3240 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Win32.Build.0 = Release|Win32 3241 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 3242 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 3243 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 3244 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Release|Windows Mobile 6 Professional SDK (ARMV4I) 3245 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 6 Professional SDK (ARMV4I) 3246 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Standard SDK (ARMV4I) 3247 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Release|Windows Mobile 6 Standard SDK (ARMV4I) 3248 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|Windows Mobile 6 Standard SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 6 Standard SDK (ARMV4I) 3249 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|x64.ActiveCfg = Release|x64 3250 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release|x64.Build.0 = Release|x64 3251 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Pocket PC 2003 (ARMV4).ActiveCfg = Release-Dynamic|Pocket PC 2003 (ARMV4) 3252 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Pocket PC 2003 (ARMV4).Build.0 = Release-Dynamic|Pocket PC 2003 (ARMV4) 3253 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Pocket PC 2003 (ARMV4).Deploy.0 = Release-Dynamic|Pocket PC 2003 (ARMV4) 3254 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Smartphone 2003 (ARMV4).ActiveCfg = Release-Dynamic|Smartphone 2003 (ARMV4) 3255 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Smartphone 2003 (ARMV4).Build.0 = Release-Dynamic|Smartphone 2003 (ARMV4) 3256 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Smartphone 2003 (ARMV4).Deploy.0 = Release-Dynamic|Smartphone 2003 (ARMV4) 3257 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Win32.ActiveCfg = Release-Dynamic|Win32 3258 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Win32.Build.0 = Release-Dynamic|Win32 3259 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3260 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3261 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3262 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3263 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I) 3264 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I) 3265 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I) 3266 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I).Deploy.0 = Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I) 3267 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|x64.ActiveCfg = Release-Dynamic|x64 3268 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Dynamic|x64.Build.0 = Release-Dynamic|x64 3269 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Pocket PC 2003 (ARMV4).ActiveCfg = Release-Static|Pocket PC 2003 (ARMV4) 3270 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Pocket PC 2003 (ARMV4).Build.0 = Release-Static|Pocket PC 2003 (ARMV4) 3271 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Pocket PC 2003 (ARMV4).Deploy.0 = Release-Static|Pocket PC 2003 (ARMV4) 3272 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Smartphone 2003 (ARMV4).ActiveCfg = Release-Static|Smartphone 2003 (ARMV4) 3273 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Smartphone 2003 (ARMV4).Build.0 = Release-Static|Smartphone 2003 (ARMV4) 3274 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Smartphone 2003 (ARMV4).Deploy.0 = Release-Static|Smartphone 2003 (ARMV4) 3275 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Win32.ActiveCfg = Release-Static|Win32 3276 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Win32.Build.0 = Release-Static|Win32 3277 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3278 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Release-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3279 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Release-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3280 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Release-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3281 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Release-Static|Windows Mobile 6 Professional SDK (ARMV4I) 3282 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Release-Static|Windows Mobile 6 Standard SDK (ARMV4I) 3283 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Release-Static|Windows Mobile 6 Standard SDK (ARMV4I) 3284 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|Windows Mobile 6 Standard SDK (ARMV4I).Deploy.0 = Release-Static|Windows Mobile 6 Standard SDK (ARMV4I) 3285 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|x64.ActiveCfg = Release-Static|x64 3286 {B82CDD25-6903-430E-BD38-D8129A2015C1}.Release-Static|x64.Build.0 = Release-Static|x64 3175 3287 EndGlobalSection 3176 3288 GlobalSection(SolutionProperties) = preSolution -
pjproject/trunk/pjsip-apps/build/Makefile
r4656 r4704 63 63 # 64 64 # 65 # x x x x x x x x x x x x x x x x x x x x x x x x 66 # 67 # FIX THIS 68 # 69 # x x x x x x x x x x x x x x x x x x x x x x x x 65 70 TARGETS := $(BINDIR)/$(PJSUA_EXE) $(BINDIR)/$(PJSYSTEST_EXE) samples 66 71 67 72 all: $(TARGETS) 68 73 74 swig: 75 $(MAKE) -C ../src/swig 76 69 77 doc: 70 78 -
pjproject/trunk/pjsip-apps/build/Samples.mak
r4656 r4704 49 49 EXES := $(foreach file, $(SAMPLES), $(file)$(HOST_EXE)) 50 50 51 PJSUA2_SAMPLES := pjsua2_demo 52 53 PJSUA2_EXES := $(foreach file, $(PJSUA2_SAMPLES), $(file)$(HOST_EXE)) 54 51 55 .PHONY: $(EXES) 56 .PHONY: $(PJSUA2_EXES) 52 57 53 all: $(EXES) 58 all: $(EXES) $(PJSUA2_EXES) 54 59 55 60 $(EXES): 56 61 $(MAKE) --no-print-directory -f $(RULES_MAK) SAMPLE_SRCDIR=$(SRCDIR) SAMPLE_OBJS=$@.o SAMPLE_CFLAGS="$(_CFLAGS)" SAMPLE_LDFLAGS="$(_LDFLAGS)" SAMPLE_EXE=$@ APP=SAMPLE app=sample $(subst /,$(HOST_PSEP),$(BINDIR)/$@) 62 63 $(PJSUA2_EXES): 64 $(MAKE) --no-print-directory -f $(RULES_MAK) SAMPLE_SRCDIR=$(SRCDIR) SAMPLE_OBJS=$@.o SAMPLE_CFLAGS="$(_CFLAGS)" SAMPLE_LDFLAGS="$(_LDFLAGS) -lstdc++" SAMPLE_EXE=$@ APP=SAMPLE app=sample $(subst /,$(HOST_PSEP),$(BINDIR)/$@) 57 65 58 66 depend: -
pjproject/trunk/pjsip-apps/build/sample_debug.vcproj
r4537 r4704 312 312 </Configuration> 313 313 <Configuration 314 Name="Release|Win32" 315 ConfigurationType="1" 316 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 317 UseOfMFC="0" 318 ATLMinimizesCRunTimeLibraryUsage="false" 319 CharacterSet="2" 320 > 321 <Tool 322 Name="VCPreBuildEventTool" 323 /> 324 <Tool 325 Name="VCCustomBuildTool" 326 /> 327 <Tool 328 Name="VCXMLDataGeneratorTool" 329 /> 330 <Tool 331 Name="VCWebServiceProxyGeneratorTool" 332 /> 333 <Tool 334 Name="VCMIDLTool" 335 /> 336 <Tool 337 Name="VCCLCompilerTool" 338 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 339 PreprocessorDefinitions="_CONSOLE;" 340 PrecompiledHeaderFile="" 341 /> 342 <Tool 343 Name="VCManagedResourceCompilerTool" 344 /> 345 <Tool 346 Name="VCResourceCompilerTool" 347 /> 348 <Tool 349 Name="VCPreLinkEventTool" 350 /> 351 <Tool 352 Name="VCLinkerTool" 353 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 354 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 355 IgnoreDefaultLibraryNames="" 356 /> 357 <Tool 358 Name="VCALinkTool" 359 /> 360 <Tool 361 Name="VCManifestTool" 362 /> 363 <Tool 364 Name="VCXDCMakeTool" 365 /> 366 <Tool 367 Name="VCBscMakeTool" 368 /> 369 <Tool 370 Name="VCFxCopTool" 371 /> 372 <Tool 373 Name="VCAppVerifierTool" 374 /> 375 <Tool 376 Name="VCWebDeploymentTool" 377 /> 378 <Tool 379 Name="VCPostBuildEventTool" 380 /> 381 </Configuration> 382 <Configuration 383 Name="Release|Pocket PC 2003 (ARMV4)" 384 ConfigurationType="1" 385 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 314 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 315 ConfigurationType="1" 316 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 386 317 UseOfMFC="0" 387 318 ATLMinimizesCRunTimeLibraryUsage="false" … … 421 352 Name="VCLinkerTool" 422 353 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 423 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 2003ppc-vc$(VSVer)-$(ConfigurationName).exe"354 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 424 355 /> 425 356 <Tool … … 448 379 </Configuration> 449 380 <Configuration 450 Name=" Release|Smartphone 2003 (ARMV4)"451 ConfigurationType="1" 452 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops"381 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 382 ConfigurationType="1" 383 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 453 384 UseOfMFC="0" 454 385 ATLMinimizesCRunTimeLibraryUsage="false" … … 488 419 Name="VCLinkerTool" 489 420 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 490 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 2003sp-vc$(VSVer)-$(ConfigurationName).exe"421 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 491 422 /> 492 423 <Tool … … 515 446 </Configuration> 516 447 <Configuration 517 Name="Release| x64"518 ConfigurationType="1" 519 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win 64-release-defaults.vsprops"448 Name="Release|Win32" 449 ConfigurationType="1" 450 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 520 451 UseOfMFC="0" 521 452 ATLMinimizesCRunTimeLibraryUsage="false" … … 536 467 <Tool 537 468 Name="VCMIDLTool" 538 TargetEnvironment="3"539 469 /> 540 470 <Tool … … 558 488 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 559 489 IgnoreDefaultLibraryNames="" 560 TargetMachine="17"561 490 /> 562 491 <Tool … … 586 515 </Configuration> 587 516 <Configuration 588 Name="Debug-Static|Win32" 589 ConfigurationType="1" 590 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 591 UseOfMFC="0" 592 ATLMinimizesCRunTimeLibraryUsage="false" 593 CharacterSet="2" 594 > 595 <Tool 596 Name="VCPreBuildEventTool" 597 /> 598 <Tool 599 Name="VCCustomBuildTool" 600 /> 601 <Tool 602 Name="VCXMLDataGeneratorTool" 603 /> 604 <Tool 605 Name="VCWebServiceProxyGeneratorTool" 606 /> 607 <Tool 608 Name="VCMIDLTool" 609 /> 610 <Tool 611 Name="VCCLCompilerTool" 612 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 613 PreprocessorDefinitions="_CONSOLE;" 614 PrecompiledHeaderFile="" 615 /> 616 <Tool 617 Name="VCManagedResourceCompilerTool" 618 /> 619 <Tool 620 Name="VCResourceCompilerTool" 621 /> 622 <Tool 623 Name="VCPreLinkEventTool" 624 /> 625 <Tool 626 Name="VCLinkerTool" 627 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 628 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 629 IgnoreDefaultLibraryNames="MSVCRT.LIB" 630 /> 631 <Tool 632 Name="VCALinkTool" 633 /> 634 <Tool 635 Name="VCManifestTool" 636 /> 637 <Tool 638 Name="VCXDCMakeTool" 639 /> 640 <Tool 641 Name="VCBscMakeTool" 642 /> 643 <Tool 644 Name="VCFxCopTool" 645 /> 646 <Tool 647 Name="VCAppVerifierTool" 648 /> 649 <Tool 650 Name="VCWebDeploymentTool" 651 /> 652 <Tool 653 Name="VCPostBuildEventTool" 654 /> 655 </Configuration> 656 <Configuration 657 Name="Debug-Static|Pocket PC 2003 (ARMV4)" 658 ConfigurationType="1" 659 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 517 Name="Release|Pocket PC 2003 (ARMV4)" 518 ConfigurationType="1" 519 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 660 520 UseOfMFC="0" 661 521 ATLMinimizesCRunTimeLibraryUsage="false" … … 722 582 </Configuration> 723 583 <Configuration 724 Name=" Debug-Static|Smartphone 2003 (ARMV4)"725 ConfigurationType="1" 726 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops"584 Name="Release|Smartphone 2003 (ARMV4)" 585 ConfigurationType="1" 586 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 727 587 UseOfMFC="0" 728 588 ATLMinimizesCRunTimeLibraryUsage="false" … … 789 649 </Configuration> 790 650 <Configuration 791 Name=" Debug-Static|x64"792 ConfigurationType="1" 793 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-common-defaults.vsprops"651 Name="Release|x64" 652 ConfigurationType="1" 653 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops" 794 654 UseOfMFC="0" 795 655 ATLMinimizesCRunTimeLibraryUsage="false" … … 811 671 Name="VCMIDLTool" 812 672 TargetEnvironment="3" 813 />814 <Tool815 Name="VCCLCompilerTool"816 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include"817 PreprocessorDefinitions="_CONSOLE;"818 PrecompiledHeaderFile=""819 DebugInformationFormat="3"820 />821 <Tool822 Name="VCManagedResourceCompilerTool"823 />824 <Tool825 Name="VCResourceCompilerTool"826 />827 <Tool828 Name="VCPreLinkEventTool"829 />830 <Tool831 Name="VCLinkerTool"832 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib"833 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe"834 IgnoreDefaultLibraryNames="MSVCRT.LIB"835 TargetMachine="17"836 />837 <Tool838 Name="VCALinkTool"839 />840 <Tool841 Name="VCManifestTool"842 />843 <Tool844 Name="VCXDCMakeTool"845 />846 <Tool847 Name="VCBscMakeTool"848 />849 <Tool850 Name="VCFxCopTool"851 />852 <Tool853 Name="VCAppVerifierTool"854 />855 <Tool856 Name="VCWebDeploymentTool"857 />858 <Tool859 Name="VCPostBuildEventTool"860 />861 </Configuration>862 <Configuration863 Name="Release-Dynamic|Win32"864 ConfigurationType="1"865 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops"866 UseOfMFC="0"867 ATLMinimizesCRunTimeLibraryUsage="false"868 CharacterSet="2"869 >870 <Tool871 Name="VCPreBuildEventTool"872 />873 <Tool874 Name="VCCustomBuildTool"875 />876 <Tool877 Name="VCXMLDataGeneratorTool"878 />879 <Tool880 Name="VCWebServiceProxyGeneratorTool"881 />882 <Tool883 Name="VCMIDLTool"884 673 /> 885 674 <Tool … … 903 692 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 904 693 IgnoreDefaultLibraryNames="" 694 TargetMachine="17" 905 695 /> 906 696 <Tool … … 930 720 </Configuration> 931 721 <Configuration 932 Name="Release -Dynamic|Pocket PC 2003 (ARMV4)"933 ConfigurationType="1" 934 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm 2003-release-defaults.vsprops"722 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 723 ConfigurationType="1" 724 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 935 725 UseOfMFC="0" 936 726 ATLMinimizesCRunTimeLibraryUsage="false" … … 970 760 Name="VCLinkerTool" 971 761 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 972 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 2003ppc-vc$(VSVer)-$(ConfigurationName).exe"762 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 973 763 /> 974 764 <Tool … … 997 787 </Configuration> 998 788 <Configuration 999 Name="Release -Dynamic|Smartphone 2003 (ARMV4)"1000 ConfigurationType="1" 1001 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm 2003-release-defaults.vsprops"789 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 790 ConfigurationType="1" 791 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1002 792 UseOfMFC="0" 1003 793 ATLMinimizesCRunTimeLibraryUsage="false" … … 1037 827 Name="VCLinkerTool" 1038 828 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1039 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 2003sp-vc$(VSVer)-$(ConfigurationName).exe"829 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 1040 830 /> 1041 831 <Tool … … 1064 854 </Configuration> 1065 855 <Configuration 1066 Name="Release-Dynamic|x64" 1067 ConfigurationType="1" 1068 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops" 1069 UseOfMFC="0" 1070 ATLMinimizesCRunTimeLibraryUsage="false" 1071 CharacterSet="2" 1072 > 1073 <Tool 1074 Name="VCPreBuildEventTool" 1075 /> 1076 <Tool 1077 Name="VCCustomBuildTool" 1078 /> 1079 <Tool 1080 Name="VCXMLDataGeneratorTool" 1081 /> 1082 <Tool 1083 Name="VCWebServiceProxyGeneratorTool" 1084 /> 1085 <Tool 1086 Name="VCMIDLTool" 1087 TargetEnvironment="3" 1088 /> 1089 <Tool 1090 Name="VCCLCompilerTool" 1091 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 1092 PreprocessorDefinitions="_CONSOLE;" 1093 PrecompiledHeaderFile="" 1094 /> 1095 <Tool 1096 Name="VCManagedResourceCompilerTool" 1097 /> 1098 <Tool 1099 Name="VCResourceCompilerTool" 1100 /> 1101 <Tool 1102 Name="VCPreLinkEventTool" 1103 /> 1104 <Tool 1105 Name="VCLinkerTool" 1106 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1107 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1108 IgnoreDefaultLibraryNames="" 1109 TargetMachine="17" 1110 /> 1111 <Tool 1112 Name="VCALinkTool" 1113 /> 1114 <Tool 1115 Name="VCManifestTool" 1116 /> 1117 <Tool 1118 Name="VCXDCMakeTool" 1119 /> 1120 <Tool 1121 Name="VCBscMakeTool" 1122 /> 1123 <Tool 1124 Name="VCFxCopTool" 1125 /> 1126 <Tool 1127 Name="VCAppVerifierTool" 1128 /> 1129 <Tool 1130 Name="VCWebDeploymentTool" 1131 /> 1132 <Tool 1133 Name="VCPostBuildEventTool" 1134 /> 1135 </Configuration> 1136 <Configuration 1137 Name="Debug-Dynamic|Win32" 1138 ConfigurationType="1" 1139 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 856 Name="Debug-Static|Win32" 857 ConfigurationType="1" 858 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 1140 859 UseOfMFC="0" 1141 860 ATLMinimizesCRunTimeLibraryUsage="false" … … 1204 923 </Configuration> 1205 924 <Configuration 1206 Name="Debug- Dynamic|Pocket PC 2003 (ARMV4)"1207 ConfigurationType="1" 1208 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug- dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops"925 Name="Debug-Static|Pocket PC 2003 (ARMV4)" 926 ConfigurationType="1" 927 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 1209 928 UseOfMFC="0" 1210 929 ATLMinimizesCRunTimeLibraryUsage="false" … … 1271 990 </Configuration> 1272 991 <Configuration 1273 Name="Debug- Dynamic|Smartphone 2003 (ARMV4)"1274 ConfigurationType="1" 1275 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug- dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops"992 Name="Debug-Static|Smartphone 2003 (ARMV4)" 993 ConfigurationType="1" 994 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 1276 995 UseOfMFC="0" 1277 996 ATLMinimizesCRunTimeLibraryUsage="false" … … 1338 1057 </Configuration> 1339 1058 <Configuration 1340 Name="Debug- Dynamic|x64"1341 ConfigurationType="1" 1342 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug- dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-common-defaults.vsprops"1059 Name="Debug-Static|x64" 1060 ConfigurationType="1" 1061 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-common-defaults.vsprops" 1343 1062 UseOfMFC="0" 1344 1063 ATLMinimizesCRunTimeLibraryUsage="false" … … 1410 1129 </Configuration> 1411 1130 <Configuration 1412 Name="Release-Static|Win32" 1413 ConfigurationType="1" 1414 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 1415 UseOfMFC="0" 1416 ATLMinimizesCRunTimeLibraryUsage="false" 1417 CharacterSet="2" 1418 > 1419 <Tool 1420 Name="VCPreBuildEventTool" 1421 /> 1422 <Tool 1423 Name="VCCustomBuildTool" 1424 /> 1425 <Tool 1426 Name="VCXMLDataGeneratorTool" 1427 /> 1428 <Tool 1429 Name="VCWebServiceProxyGeneratorTool" 1430 /> 1431 <Tool 1432 Name="VCMIDLTool" 1433 /> 1434 <Tool 1435 Name="VCCLCompilerTool" 1436 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 1437 PreprocessorDefinitions="_CONSOLE;" 1438 PrecompiledHeaderFile="" 1439 /> 1440 <Tool 1441 Name="VCManagedResourceCompilerTool" 1442 /> 1443 <Tool 1444 Name="VCResourceCompilerTool" 1445 /> 1446 <Tool 1447 Name="VCPreLinkEventTool" 1448 /> 1449 <Tool 1450 Name="VCLinkerTool" 1451 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1452 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1453 IgnoreDefaultLibraryNames="MSVCRT.LIB" 1454 /> 1455 <Tool 1456 Name="VCALinkTool" 1457 /> 1458 <Tool 1459 Name="VCManifestTool" 1460 /> 1461 <Tool 1462 Name="VCXDCMakeTool" 1463 /> 1464 <Tool 1465 Name="VCBscMakeTool" 1466 /> 1467 <Tool 1468 Name="VCFxCopTool" 1469 /> 1470 <Tool 1471 Name="VCAppVerifierTool" 1472 /> 1473 <Tool 1474 Name="VCWebDeploymentTool" 1475 /> 1476 <Tool 1477 Name="VCPostBuildEventTool" 1478 /> 1479 </Configuration> 1480 <Configuration 1481 Name="Release-Static|Pocket PC 2003 (ARMV4)" 1482 ConfigurationType="1" 1483 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 1131 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 1132 ConfigurationType="1" 1133 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1484 1134 UseOfMFC="0" 1485 1135 ATLMinimizesCRunTimeLibraryUsage="false" … … 1519 1169 Name="VCLinkerTool" 1520 1170 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1521 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 2003ppc-vc$(VSVer)-$(ConfigurationName).exe"1171 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 1522 1172 /> 1523 1173 <Tool … … 1546 1196 </Configuration> 1547 1197 <Configuration 1548 Name=" Release-Static|Smartphone 2003 (ARMV4)"1549 ConfigurationType="1" 1550 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops"1198 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 1199 ConfigurationType="1" 1200 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 1551 1201 UseOfMFC="0" 1552 1202 ATLMinimizesCRunTimeLibraryUsage="false" … … 1586 1236 Name="VCLinkerTool" 1587 1237 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1588 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 2003sp-vc$(VSVer)-$(ConfigurationName).exe"1238 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 1589 1239 /> 1590 1240 <Tool … … 1613 1263 </Configuration> 1614 1264 <Configuration 1615 Name="Release- Static|x64"1616 ConfigurationType="1" 1617 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release- static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops"1265 Name="Release-Dynamic|Win32" 1266 ConfigurationType="1" 1267 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 1618 1268 UseOfMFC="0" 1619 1269 ATLMinimizesCRunTimeLibraryUsage="false" … … 1634 1284 <Tool 1635 1285 Name="VCMIDLTool" 1636 TargetEnvironment="3"1637 1286 /> 1638 1287 <Tool … … 1655 1304 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1656 1305 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1657 IgnoreDefaultLibraryNames="MSVCRT.LIB" 1658 TargetMachine="17" 1306 IgnoreDefaultLibraryNames="" 1659 1307 /> 1660 1308 <Tool … … 1684 1332 </Configuration> 1685 1333 <Configuration 1686 Name=" Debug|Windows Mobile 6 Standard SDK (ARMV4I)"1687 ConfigurationType="1" 1688 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"1334 Name="Release-Dynamic|Pocket PC 2003 (ARMV4)" 1335 ConfigurationType="1" 1336 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 1689 1337 UseOfMFC="0" 1690 1338 ATLMinimizesCRunTimeLibraryUsage="false" … … 1724 1372 Name="VCLinkerTool" 1725 1373 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1726 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"1374 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm2003ppc-vc$(VSVer)-$(ConfigurationName).exe" 1727 1375 /> 1728 1376 <Tool … … 1751 1399 </Configuration> 1752 1400 <Configuration 1753 Name=" Debug|Windows Mobile 6 Professional SDK (ARMV4I)"1754 ConfigurationType="1" 1755 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"1401 Name="Release-Dynamic|Smartphone 2003 (ARMV4)" 1402 ConfigurationType="1" 1403 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 1756 1404 UseOfMFC="0" 1757 1405 ATLMinimizesCRunTimeLibraryUsage="false" … … 1791 1439 Name="VCLinkerTool" 1792 1440 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1793 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"1441 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm2003sp-vc$(VSVer)-$(ConfigurationName).exe" 1794 1442 /> 1795 1443 <Tool … … 1818 1466 </Configuration> 1819 1467 <Configuration 1820 Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 1821 ConfigurationType="1" 1822 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops" 1468 Name="Release-Dynamic|x64" 1469 ConfigurationType="1" 1470 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops" 1471 UseOfMFC="0" 1472 ATLMinimizesCRunTimeLibraryUsage="false" 1473 CharacterSet="2" 1474 > 1475 <Tool 1476 Name="VCPreBuildEventTool" 1477 /> 1478 <Tool 1479 Name="VCCustomBuildTool" 1480 /> 1481 <Tool 1482 Name="VCXMLDataGeneratorTool" 1483 /> 1484 <Tool 1485 Name="VCWebServiceProxyGeneratorTool" 1486 /> 1487 <Tool 1488 Name="VCMIDLTool" 1489 TargetEnvironment="3" 1490 /> 1491 <Tool 1492 Name="VCCLCompilerTool" 1493 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 1494 PreprocessorDefinitions="_CONSOLE;" 1495 PrecompiledHeaderFile="" 1496 /> 1497 <Tool 1498 Name="VCManagedResourceCompilerTool" 1499 /> 1500 <Tool 1501 Name="VCResourceCompilerTool" 1502 /> 1503 <Tool 1504 Name="VCPreLinkEventTool" 1505 /> 1506 <Tool 1507 Name="VCLinkerTool" 1508 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1509 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1510 IgnoreDefaultLibraryNames="" 1511 TargetMachine="17" 1512 /> 1513 <Tool 1514 Name="VCALinkTool" 1515 /> 1516 <Tool 1517 Name="VCManifestTool" 1518 /> 1519 <Tool 1520 Name="VCXDCMakeTool" 1521 /> 1522 <Tool 1523 Name="VCBscMakeTool" 1524 /> 1525 <Tool 1526 Name="VCFxCopTool" 1527 /> 1528 <Tool 1529 Name="VCAppVerifierTool" 1530 /> 1531 <Tool 1532 Name="VCWebDeploymentTool" 1533 /> 1534 <Tool 1535 Name="VCPostBuildEventTool" 1536 /> 1537 </Configuration> 1538 <Configuration 1539 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 1540 ConfigurationType="1" 1541 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1823 1542 UseOfMFC="0" 1824 1543 ATLMinimizesCRunTimeLibraryUsage="false" … … 1858 1577 Name="VCLinkerTool" 1859 1578 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1860 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 5ppc-vc$(VSVer)-$(ConfigurationName).exe"1579 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 1861 1580 /> 1862 1581 <Tool … … 1885 1604 </Configuration> 1886 1605 <Configuration 1887 Name=" Debug|Windows Mobile 5.0 SmartphoneSDK (ARMV4I)"1888 ConfigurationType="1" 1889 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops"1606 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 1607 ConfigurationType="1" 1608 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1890 1609 UseOfMFC="0" 1891 1610 ATLMinimizesCRunTimeLibraryUsage="false" … … 1925 1644 Name="VCLinkerTool" 1926 1645 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1927 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 5sp-vc$(VSVer)-$(ConfigurationName).exe"1646 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 1928 1647 /> 1929 1648 <Tool … … 1952 1671 </Configuration> 1953 1672 <Configuration 1954 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 1955 ConfigurationType="1" 1956 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 1673 Name="Debug-Dynamic|Win32" 1674 ConfigurationType="1" 1675 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-common-defaults.vsprops" 1676 UseOfMFC="0" 1677 ATLMinimizesCRunTimeLibraryUsage="false" 1678 CharacterSet="2" 1679 > 1680 <Tool 1681 Name="VCPreBuildEventTool" 1682 /> 1683 <Tool 1684 Name="VCCustomBuildTool" 1685 /> 1686 <Tool 1687 Name="VCXMLDataGeneratorTool" 1688 /> 1689 <Tool 1690 Name="VCWebServiceProxyGeneratorTool" 1691 /> 1692 <Tool 1693 Name="VCMIDLTool" 1694 /> 1695 <Tool 1696 Name="VCCLCompilerTool" 1697 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 1698 PreprocessorDefinitions="_CONSOLE;" 1699 PrecompiledHeaderFile="" 1700 /> 1701 <Tool 1702 Name="VCManagedResourceCompilerTool" 1703 /> 1704 <Tool 1705 Name="VCResourceCompilerTool" 1706 /> 1707 <Tool 1708 Name="VCPreLinkEventTool" 1709 /> 1710 <Tool 1711 Name="VCLinkerTool" 1712 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1713 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1714 IgnoreDefaultLibraryNames="MSVCRT.LIB" 1715 /> 1716 <Tool 1717 Name="VCALinkTool" 1718 /> 1719 <Tool 1720 Name="VCManifestTool" 1721 /> 1722 <Tool 1723 Name="VCXDCMakeTool" 1724 /> 1725 <Tool 1726 Name="VCBscMakeTool" 1727 /> 1728 <Tool 1729 Name="VCFxCopTool" 1730 /> 1731 <Tool 1732 Name="VCAppVerifierTool" 1733 /> 1734 <Tool 1735 Name="VCWebDeploymentTool" 1736 /> 1737 <Tool 1738 Name="VCPostBuildEventTool" 1739 /> 1740 </Configuration> 1741 <Configuration 1742 Name="Debug-Dynamic|Pocket PC 2003 (ARMV4)" 1743 ConfigurationType="1" 1744 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 1957 1745 UseOfMFC="0" 1958 1746 ATLMinimizesCRunTimeLibraryUsage="false" … … 1992 1780 Name="VCLinkerTool" 1993 1781 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1994 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"1782 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm2003ppc-vc$(VSVer)-$(ConfigurationName).exe" 1995 1783 /> 1996 1784 <Tool … … 2019 1807 </Configuration> 2020 1808 <Configuration 2021 Name=" Release|Windows Mobile 6 Professional SDK (ARMV4I)"2022 ConfigurationType="1" 2023 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops"1809 Name="Debug-Dynamic|Smartphone 2003 (ARMV4)" 1810 ConfigurationType="1" 1811 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-common-defaults.vsprops" 2024 1812 UseOfMFC="0" 2025 1813 ATLMinimizesCRunTimeLibraryUsage="false" … … 2059 1847 Name="VCLinkerTool" 2060 1848 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2061 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"1849 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm2003sp-vc$(VSVer)-$(ConfigurationName).exe" 2062 1850 /> 2063 1851 <Tool … … 2086 1874 </Configuration> 2087 1875 <Configuration 2088 Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 2089 ConfigurationType="1" 2090 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-release-defaults.vsprops" 1876 Name="Debug-Dynamic|x64" 1877 ConfigurationType="1" 1878 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-common-defaults.vsprops" 1879 UseOfMFC="0" 1880 ATLMinimizesCRunTimeLibraryUsage="false" 1881 CharacterSet="2" 1882 > 1883 <Tool 1884 Name="VCPreBuildEventTool" 1885 /> 1886 <Tool 1887 Name="VCCustomBuildTool" 1888 /> 1889 <Tool 1890 Name="VCXMLDataGeneratorTool" 1891 /> 1892 <Tool 1893 Name="VCWebServiceProxyGeneratorTool" 1894 /> 1895 <Tool 1896 Name="VCMIDLTool" 1897 TargetEnvironment="3" 1898 /> 1899 <Tool 1900 Name="VCCLCompilerTool" 1901 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 1902 PreprocessorDefinitions="_CONSOLE;" 1903 PrecompiledHeaderFile="" 1904 DebugInformationFormat="3" 1905 /> 1906 <Tool 1907 Name="VCManagedResourceCompilerTool" 1908 /> 1909 <Tool 1910 Name="VCResourceCompilerTool" 1911 /> 1912 <Tool 1913 Name="VCPreLinkEventTool" 1914 /> 1915 <Tool 1916 Name="VCLinkerTool" 1917 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 1918 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 1919 IgnoreDefaultLibraryNames="MSVCRT.LIB" 1920 TargetMachine="17" 1921 /> 1922 <Tool 1923 Name="VCALinkTool" 1924 /> 1925 <Tool 1926 Name="VCManifestTool" 1927 /> 1928 <Tool 1929 Name="VCXDCMakeTool" 1930 /> 1931 <Tool 1932 Name="VCBscMakeTool" 1933 /> 1934 <Tool 1935 Name="VCFxCopTool" 1936 /> 1937 <Tool 1938 Name="VCAppVerifierTool" 1939 /> 1940 <Tool 1941 Name="VCWebDeploymentTool" 1942 /> 1943 <Tool 1944 Name="VCPostBuildEventTool" 1945 /> 1946 </Configuration> 1947 <Configuration 1948 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 1949 ConfigurationType="1" 1950 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 2091 1951 UseOfMFC="0" 2092 1952 ATLMinimizesCRunTimeLibraryUsage="false" … … 2126 1986 Name="VCLinkerTool" 2127 1987 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2128 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 5ppc-vc$(VSVer)-$(ConfigurationName).exe"1988 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 2129 1989 /> 2130 1990 <Tool … … 2153 2013 </Configuration> 2154 2014 <Configuration 2155 Name=" Release|Windows Mobile 5.0 SmartphoneSDK (ARMV4I)"2156 ConfigurationType="1" 2157 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-release-defaults.vsprops"2015 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 2016 ConfigurationType="1" 2017 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 2158 2018 UseOfMFC="0" 2159 2019 ATLMinimizesCRunTimeLibraryUsage="false" … … 2193 2053 Name="VCLinkerTool" 2194 2054 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2195 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 5sp-vc$(VSVer)-$(ConfigurationName).exe"2055 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 2196 2056 /> 2197 2057 <Tool … … 2220 2080 </Configuration> 2221 2081 <Configuration 2222 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 2223 ConfigurationType="1" 2224 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops" 2082 Name="Release-Static|Win32" 2083 ConfigurationType="1" 2084 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win32-release-defaults.vsprops" 2085 UseOfMFC="0" 2086 ATLMinimizesCRunTimeLibraryUsage="false" 2087 CharacterSet="2" 2088 > 2089 <Tool 2090 Name="VCPreBuildEventTool" 2091 /> 2092 <Tool 2093 Name="VCCustomBuildTool" 2094 /> 2095 <Tool 2096 Name="VCXMLDataGeneratorTool" 2097 /> 2098 <Tool 2099 Name="VCWebServiceProxyGeneratorTool" 2100 /> 2101 <Tool 2102 Name="VCMIDLTool" 2103 /> 2104 <Tool 2105 Name="VCCLCompilerTool" 2106 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 2107 PreprocessorDefinitions="_CONSOLE;" 2108 PrecompiledHeaderFile="" 2109 /> 2110 <Tool 2111 Name="VCManagedResourceCompilerTool" 2112 /> 2113 <Tool 2114 Name="VCResourceCompilerTool" 2115 /> 2116 <Tool 2117 Name="VCPreLinkEventTool" 2118 /> 2119 <Tool 2120 Name="VCLinkerTool" 2121 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2122 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 2123 IgnoreDefaultLibraryNames="MSVCRT.LIB" 2124 /> 2125 <Tool 2126 Name="VCALinkTool" 2127 /> 2128 <Tool 2129 Name="VCManifestTool" 2130 /> 2131 <Tool 2132 Name="VCXDCMakeTool" 2133 /> 2134 <Tool 2135 Name="VCBscMakeTool" 2136 /> 2137 <Tool 2138 Name="VCFxCopTool" 2139 /> 2140 <Tool 2141 Name="VCAppVerifierTool" 2142 /> 2143 <Tool 2144 Name="VCWebDeploymentTool" 2145 /> 2146 <Tool 2147 Name="VCPostBuildEventTool" 2148 /> 2149 </Configuration> 2150 <Configuration 2151 Name="Release-Static|Pocket PC 2003 (ARMV4)" 2152 ConfigurationType="1" 2153 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 2225 2154 UseOfMFC="0" 2226 2155 ATLMinimizesCRunTimeLibraryUsage="false" … … 2260 2189 Name="VCLinkerTool" 2261 2190 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2262 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"2191 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm2003ppc-vc$(VSVer)-$(ConfigurationName).exe" 2263 2192 /> 2264 2193 <Tool … … 2287 2216 </Configuration> 2288 2217 <Configuration 2289 Name=" Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)"2290 ConfigurationType="1" 2291 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"2218 Name="Release-Static|Smartphone 2003 (ARMV4)" 2219 ConfigurationType="1" 2220 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm2003-release-defaults.vsprops" 2292 2221 UseOfMFC="0" 2293 2222 ATLMinimizesCRunTimeLibraryUsage="false" … … 2327 2256 Name="VCLinkerTool" 2328 2257 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2329 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"2258 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm2003sp-vc$(VSVer)-$(ConfigurationName).exe" 2330 2259 /> 2331 2260 <Tool … … 2354 2283 </Configuration> 2355 2284 <Configuration 2356 Name="Debug-Static|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 2357 ConfigurationType="1" 2358 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops" 2285 Name="Release-Static|x64" 2286 ConfigurationType="1" 2287 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-win64-release-defaults.vsprops" 2288 UseOfMFC="0" 2289 ATLMinimizesCRunTimeLibraryUsage="false" 2290 CharacterSet="2" 2291 > 2292 <Tool 2293 Name="VCPreBuildEventTool" 2294 /> 2295 <Tool 2296 Name="VCCustomBuildTool" 2297 /> 2298 <Tool 2299 Name="VCXMLDataGeneratorTool" 2300 /> 2301 <Tool 2302 Name="VCWebServiceProxyGeneratorTool" 2303 /> 2304 <Tool 2305 Name="VCMIDLTool" 2306 TargetEnvironment="3" 2307 /> 2308 <Tool 2309 Name="VCCLCompilerTool" 2310 AdditionalIncludeDirectories="../../pjsip/include,../../pjlib/include,../../pjlib-util/include,../../pjmedia/include,../../pjnath/include" 2311 PreprocessorDefinitions="_CONSOLE;" 2312 PrecompiledHeaderFile="" 2313 /> 2314 <Tool 2315 Name="VCManagedResourceCompilerTool" 2316 /> 2317 <Tool 2318 Name="VCResourceCompilerTool" 2319 /> 2320 <Tool 2321 Name="VCPreLinkEventTool" 2322 /> 2323 <Tool 2324 Name="VCLinkerTool" 2325 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2326 OutputFile="..\bin\sample-debug-$(TargetCPU)-$(PlatformName)-vc$(VSVer)-$(ConfigurationName).exe" 2327 IgnoreDefaultLibraryNames="MSVCRT.LIB" 2328 TargetMachine="17" 2329 /> 2330 <Tool 2331 Name="VCALinkTool" 2332 /> 2333 <Tool 2334 Name="VCManifestTool" 2335 /> 2336 <Tool 2337 Name="VCXDCMakeTool" 2338 /> 2339 <Tool 2340 Name="VCBscMakeTool" 2341 /> 2342 <Tool 2343 Name="VCFxCopTool" 2344 /> 2345 <Tool 2346 Name="VCAppVerifierTool" 2347 /> 2348 <Tool 2349 Name="VCWebDeploymentTool" 2350 /> 2351 <Tool 2352 Name="VCPostBuildEventTool" 2353 /> 2354 </Configuration> 2355 <Configuration 2356 Name="Release-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 2357 ConfigurationType="1" 2358 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 2359 2359 UseOfMFC="0" 2360 2360 ATLMinimizesCRunTimeLibraryUsage="false" … … 2394 2394 Name="VCLinkerTool" 2395 2395 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2396 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 5ppc-vc$(VSVer)-$(ConfigurationName).exe"2396 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6std-vc$(VSVer)-$(ConfigurationName).exe" 2397 2397 /> 2398 2398 <Tool … … 2421 2421 </Configuration> 2422 2422 <Configuration 2423 Name=" Debug-Static|Windows Mobile 5.0 SmartphoneSDK (ARMV4I)"2424 ConfigurationType="1" 2425 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops"2423 Name="Release-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 2424 ConfigurationType="1" 2425 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops" 2426 2426 UseOfMFC="0" 2427 2427 ATLMinimizesCRunTimeLibraryUsage="false" … … 2461 2461 Name="VCLinkerTool" 2462 2462 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2463 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 5sp-vc$(VSVer)-$(ConfigurationName).exe"2463 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm6pro-vc$(VSVer)-$(ConfigurationName).exe" 2464 2464 /> 2465 2465 <Tool … … 2488 2488 </Configuration> 2489 2489 <Configuration 2490 Name=" Release-Dynamic|Windows Mobile 6 StandardSDK (ARMV4I)"2491 ConfigurationType="1" 2492 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops"2490 Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 2491 ConfigurationType="1" 2492 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops" 2493 2493 UseOfMFC="0" 2494 2494 ATLMinimizesCRunTimeLibraryUsage="false" … … 2528 2528 Name="VCLinkerTool" 2529 2529 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2530 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"2530 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm5ppc-vc$(VSVer)-$(ConfigurationName).exe" 2531 2531 /> 2532 2532 <Tool … … 2555 2555 </Configuration> 2556 2556 <Configuration 2557 Name=" Release-Dynamic|Windows Mobile 6 ProfessionalSDK (ARMV4I)"2558 ConfigurationType="1" 2559 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops"2557 Name="Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I)" 2558 ConfigurationType="1" 2559 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops" 2560 2560 UseOfMFC="0" 2561 2561 ATLMinimizesCRunTimeLibraryUsage="false" … … 2595 2595 Name="VCLinkerTool" 2596 2596 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2597 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"2597 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm5sp-vc$(VSVer)-$(ConfigurationName).exe" 2598 2598 /> 2599 2599 <Tool … … 2622 2622 </Configuration> 2623 2623 <Configuration 2624 Name="Release -Dynamic|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"2624 Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 2625 2625 ConfigurationType="1" 2626 2626 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-release-defaults.vsprops" … … 2689 2689 </Configuration> 2690 2690 <Configuration 2691 Name="Release -Dynamic|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"2691 Name="Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I)" 2692 2692 ConfigurationType="1" 2693 2693 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-release-defaults.vsprops" … … 2756 2756 </Configuration> 2757 2757 <Configuration 2758 Name="Debug- Dynamic|Windows Mobile 6 StandardSDK (ARMV4I)"2759 ConfigurationType="1" 2760 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug- dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"2758 Name="Debug-Static|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 2759 ConfigurationType="1" 2760 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops" 2761 2761 UseOfMFC="0" 2762 2762 ATLMinimizesCRunTimeLibraryUsage="false" … … 2796 2796 Name="VCLinkerTool" 2797 2797 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2798 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"2798 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm5ppc-vc$(VSVer)-$(ConfigurationName).exe" 2799 2799 /> 2800 2800 <Tool … … 2823 2823 </Configuration> 2824 2824 <Configuration 2825 Name="Debug- Dynamic|Windows Mobile 6 ProfessionalSDK (ARMV4I)"2826 ConfigurationType="1" 2827 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug- dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-common-defaults.vsprops"2825 Name="Debug-Static|Windows Mobile 5.0 Smartphone SDK (ARMV4I)" 2826 ConfigurationType="1" 2827 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops" 2828 2828 UseOfMFC="0" 2829 2829 ATLMinimizesCRunTimeLibraryUsage="false" … … 2863 2863 Name="VCLinkerTool" 2864 2864 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 2865 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"2865 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm5sp-vc$(VSVer)-$(ConfigurationName).exe" 2866 2866 /> 2867 2867 <Tool … … 2890 2890 </Configuration> 2891 2891 <Configuration 2892 Name=" Debug-Dynamic|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"2893 ConfigurationType="1" 2894 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops"2892 Name="Release-Dynamic|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 2893 ConfigurationType="1" 2894 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-release-defaults.vsprops" 2895 2895 UseOfMFC="0" 2896 2896 ATLMinimizesCRunTimeLibraryUsage="false" … … 2957 2957 </Configuration> 2958 2958 <Configuration 2959 Name=" Debug-Dynamic|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"2960 ConfigurationType="1" 2961 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops"2959 Name="Release-Dynamic|Windows Mobile 5.0 Smartphone SDK (ARMV4I)" 2960 ConfigurationType="1" 2961 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-release-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-release-defaults.vsprops" 2962 2962 UseOfMFC="0" 2963 2963 ATLMinimizesCRunTimeLibraryUsage="false" … … 3024 3024 </Configuration> 3025 3025 <Configuration 3026 Name=" Release-Static|Windows Mobile 6 StandardSDK (ARMV4I)"3027 ConfigurationType="1" 3028 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops"3026 Name="Debug-Dynamic|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 3027 ConfigurationType="1" 3028 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops" 3029 3029 UseOfMFC="0" 3030 3030 ATLMinimizesCRunTimeLibraryUsage="false" … … 3064 3064 Name="VCLinkerTool" 3065 3065 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 3066 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6std-vc$(VSVer)-$(ConfigurationName).exe"3066 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm5ppc-vc$(VSVer)-$(ConfigurationName).exe" 3067 3067 /> 3068 3068 <Tool … … 3091 3091 </Configuration> 3092 3092 <Configuration 3093 Name=" Release-Static|Windows Mobile 6 ProfessionalSDK (ARMV4I)"3094 ConfigurationType="1" 3095 InheritedPropertySheets="..\..\build\vs\pjproject-vs8- release-static-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm6-release-defaults.vsprops"3093 Name="Debug-Dynamic|Windows Mobile 5.0 Smartphone SDK (ARMV4I)" 3094 ConfigurationType="1" 3095 InheritedPropertySheets="..\..\build\vs\pjproject-vs8-debug-dynamic-defaults.vsprops;..\..\build\vs\pjproject-vs8-wm5-common-defaults.vsprops" 3096 3096 UseOfMFC="0" 3097 3097 ATLMinimizesCRunTimeLibraryUsage="false" … … 3131 3131 Name="VCLinkerTool" 3132 3132 AdditionalDependencies="iphlpapi.lib dsound.lib dxguid.lib netapi32.lib mswsock.lib ws2_32.lib odbc32.lib odbccp32.lib oleaut32.lib uuid.lib ole32.lib user32.lib" 3133 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm 6pro-vc$(VSVer)-$(ConfigurationName).exe"3133 OutputFile="..\bin\sample-debug-$(TargetCPU)-wm5sp-vc$(VSVer)-$(ConfigurationName).exe" 3134 3134 /> 3135 3135 <Tool … … 3300 3300 > 3301 3301 <File 3302 RelativePath="..\src\samples\debug.c "3302 RelativePath="..\src\samples\debug.cpp" 3303 3303 > 3304 3304 <FileConfiguration … … 3339 3339 </FileConfiguration> 3340 3340 <FileConfiguration 3341 Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)" 3342 > 3343 <Tool 3344 Name="VCCLCompilerTool" 3345 AdditionalIncludeDirectories="" 3346 PreprocessorDefinitions="" 3347 /> 3348 </FileConfiguration> 3349 <FileConfiguration 3350 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 3351 > 3352 <Tool 3353 Name="VCCLCompilerTool" 3354 AdditionalIncludeDirectories="" 3355 PreprocessorDefinitions="" 3356 /> 3357 </FileConfiguration> 3358 <FileConfiguration 3341 3359 Name="Release|Win32" 3342 3360 > … … 3375 3393 </FileConfiguration> 3376 3394 <FileConfiguration 3395 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)" 3396 > 3397 <Tool 3398 Name="VCCLCompilerTool" 3399 AdditionalIncludeDirectories="" 3400 PreprocessorDefinitions="" 3401 /> 3402 </FileConfiguration> 3403 <FileConfiguration 3404 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 3405 > 3406 <Tool 3407 Name="VCCLCompilerTool" 3408 AdditionalIncludeDirectories="" 3409 PreprocessorDefinitions="" 3410 /> 3411 </FileConfiguration> 3412 <FileConfiguration 3377 3413 Name="Debug-Static|Win32" 3378 3414 > … … 3411 3447 </FileConfiguration> 3412 3448 <FileConfiguration 3449 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 3450 > 3451 <Tool 3452 Name="VCCLCompilerTool" 3453 AdditionalIncludeDirectories="" 3454 PreprocessorDefinitions="" 3455 /> 3456 </FileConfiguration> 3457 <FileConfiguration 3458 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 3459 > 3460 <Tool 3461 Name="VCCLCompilerTool" 3462 AdditionalIncludeDirectories="" 3463 PreprocessorDefinitions="" 3464 /> 3465 </FileConfiguration> 3466 <FileConfiguration 3413 3467 Name="Release-Dynamic|Win32" 3414 3468 > … … 3447 3501 </FileConfiguration> 3448 3502 <FileConfiguration 3503 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 3504 > 3505 <Tool 3506 Name="VCCLCompilerTool" 3507 AdditionalIncludeDirectories="" 3508 PreprocessorDefinitions="" 3509 /> 3510 </FileConfiguration> 3511 <FileConfiguration 3512 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 3513 > 3514 <Tool 3515 Name="VCCLCompilerTool" 3516 AdditionalIncludeDirectories="" 3517 PreprocessorDefinitions="" 3518 /> 3519 </FileConfiguration> 3520 <FileConfiguration 3449 3521 Name="Debug-Dynamic|Win32" 3450 3522 > … … 3483 3555 </FileConfiguration> 3484 3556 <FileConfiguration 3557 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)" 3558 > 3559 <Tool 3560 Name="VCCLCompilerTool" 3561 AdditionalIncludeDirectories="" 3562 PreprocessorDefinitions="" 3563 /> 3564 </FileConfiguration> 3565 <FileConfiguration 3566 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)" 3567 > 3568 <Tool 3569 Name="VCCLCompilerTool" 3570 AdditionalIncludeDirectories="" 3571 PreprocessorDefinitions="" 3572 /> 3573 </FileConfiguration> 3574 <FileConfiguration 3485 3575 Name="Release-Static|Win32" 3486 3576 > … … 3519 3609 </FileConfiguration> 3520 3610 <FileConfiguration 3521 Name=" Debug|Windows Mobile 6 Standard SDK (ARMV4I)"3522 > 3523 <Tool 3524 Name="VCCLCompilerTool" 3525 AdditionalIncludeDirectories="" 3526 PreprocessorDefinitions="" 3527 /> 3528 </FileConfiguration> 3529 <FileConfiguration 3530 Name=" Debug|Windows Mobile 6 Professional SDK (ARMV4I)"3611 Name="Release-Static|Windows Mobile 6 Standard SDK (ARMV4I)" 3612 > 3613 <Tool 3614 Name="VCCLCompilerTool" 3615 AdditionalIncludeDirectories="" 3616 PreprocessorDefinitions="" 3617 /> 3618 </FileConfiguration> 3619 <FileConfiguration 3620 Name="Release-Static|Windows Mobile 6 Professional SDK (ARMV4I)" 3531 3621 > 3532 3622 <Tool … … 3555 3645 </FileConfiguration> 3556 3646 <FileConfiguration 3557 Name="Release|Windows Mobile 6 Standard SDK (ARMV4I)"3558 >3559 <Tool3560 Name="VCCLCompilerTool"3561 AdditionalIncludeDirectories=""3562 PreprocessorDefinitions=""3563 />3564 </FileConfiguration>3565 <FileConfiguration3566 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"3567 >3568 <Tool3569 Name="VCCLCompilerTool"3570 AdditionalIncludeDirectories=""3571 PreprocessorDefinitions=""3572 />3573 </FileConfiguration>3574 <FileConfiguration3575 3647 Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 3576 3648 > … … 3591 3663 </FileConfiguration> 3592 3664 <FileConfiguration 3593 Name="Debug-Static|Windows Mobile 6 Standard SDK (ARMV4I)"3594 >3595 <Tool3596 Name="VCCLCompilerTool"3597 AdditionalIncludeDirectories=""3598 PreprocessorDefinitions=""3599 />3600 </FileConfiguration>3601 <FileConfiguration3602 Name="Debug-Static|Windows Mobile 6 Professional SDK (ARMV4I)"3603 >3604 <Tool3605 Name="VCCLCompilerTool"3606 AdditionalIncludeDirectories=""3607 PreprocessorDefinitions=""3608 />3609 </FileConfiguration>3610 <FileConfiguration3611 3665 Name="Debug-Static|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 3612 3666 > … … 3627 3681 </FileConfiguration> 3628 3682 <FileConfiguration 3629 Name="Release-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"3630 >3631 <Tool3632 Name="VCCLCompilerTool"3633 AdditionalIncludeDirectories=""3634 PreprocessorDefinitions=""3635 />3636 </FileConfiguration>3637 <FileConfiguration3638 Name="Release-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"3639 >3640 <Tool3641 Name="VCCLCompilerTool"3642 AdditionalIncludeDirectories=""3643 PreprocessorDefinitions=""3644 />3645 </FileConfiguration>3646 <FileConfiguration3647 3683 Name="Release-Dynamic|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 3648 3684 > … … 3663 3699 </FileConfiguration> 3664 3700 <FileConfiguration 3665 Name="Debug-Dynamic|Windows Mobile 6 Standard SDK (ARMV4I)"3666 >3667 <Tool3668 Name="VCCLCompilerTool"3669 AdditionalIncludeDirectories=""3670 PreprocessorDefinitions=""3671 />3672 </FileConfiguration>3673 <FileConfiguration3674 Name="Debug-Dynamic|Windows Mobile 6 Professional SDK (ARMV4I)"3675 >3676 <Tool3677 Name="VCCLCompilerTool"3678 AdditionalIncludeDirectories=""3679 PreprocessorDefinitions=""3680 />3681 </FileConfiguration>3682 <FileConfiguration3683 3701 Name="Debug-Dynamic|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 3684 3702 > … … 3691 3709 <FileConfiguration 3692 3710 Name="Debug-Dynamic|Windows Mobile 5.0 Smartphone SDK (ARMV4I)" 3693 >3694 <Tool3695 Name="VCCLCompilerTool"3696 AdditionalIncludeDirectories=""3697 PreprocessorDefinitions=""3698 />3699 </FileConfiguration>3700 <FileConfiguration3701 Name="Release-Static|Windows Mobile 6 Standard SDK (ARMV4I)"3702 >3703 <Tool3704 Name="VCCLCompilerTool"3705 AdditionalIncludeDirectories=""3706 PreprocessorDefinitions=""3707 />3708 </FileConfiguration>3709 <FileConfiguration3710 Name="Release-Static|Windows Mobile 6 Professional SDK (ARMV4I)"3711 3711 > 3712 3712 <Tool -
pjproject/trunk/pjsip-apps/src/pjsua/main.c
r4522 r4704 122 122 } 123 123 } 124 return 0; 124 125 } -
pjproject/trunk/pjsip/build/Makefile
r4656 r4704 22 22 export PJSIP_SIMPLE_LIB:=libpjsip-simple-$(TARGET_NAME)$(LIBEXT) 23 23 export PJSUA_LIB_LIB:=libpjsua-$(TARGET_NAME)$(LIBEXT) 24 export PJSUA2_LIB_LIB=../lib/libpjsua2-$(TARGET_NAME)$(LIBEXT) 24 25 25 26 ifeq ($(PJ_SHARED_LIBRARIES),) … … 33 34 export PJSUA_LIB_SONAME := libpjsua.$(SHLIB_SUFFIX) 34 35 export PJSUA_LIB_SHLIB := $(PJSUA_LIB_SONAME).$(PJ_VERSION_MAJOR) 36 export PJSUA2_LIB_SONAME := ../lib/libpjsua2.$(SHLIB_SUFFIX) 37 export PJSUA2_LIB_SHLIB := $(PJSUA2_LIB_SONAME).$(PJ_VERSION_MAJOR) 35 38 endif 36 39 … … 129 132 130 133 export CC_OUT CC AR RANLIB HOST_MV HOST_RM HOST_RMDIR HOST_MKDIR OBJEXT LD LDOUT 134 135 ############################################################################### 136 # Defines for building pjsua2 library 137 # 138 export PJSUA2_LIB_SRCDIR = ../src/pjsua2 139 export PJSUA2_LIB_OBJS += $(OS_OBJS) $(M_OBJS) $(CC_OBJS) $(HOST_OBJS) \ 140 account.o endpoint.o json.o persistent.o types.o \ 141 siptypes.o call.o presence.o media.o 142 export PJSUA2_LIB_CFLAGS += $(_CFLAGS) $(PJ_VIDEO_CFLAGS) 143 export PJSUA2_LIB_CXXFLAGS = $(PJSUA2_LIB_CFLAGS) 144 145 146 ############################################################################### 147 # Defines for building pjsua2-test application 148 # 149 export PJSUA2_TEST_SRCDIR = ../src/pjsua2-test 150 export PJSUA2_TEST_OBJS += $(OS_OBJS) $(M_OBJS) $(CC_OBJS) $(HOST_OBJS) \ 151 main.o 152 export PJSUA2_TEST_CFLAGS += $(_CFLAGS) $(PJ_VIDEO_CFLAGS) 153 export PJSUA2_TEST_CXXFLAGS = $(PJSUA2_LIB_CFLAGS) 154 export PJSUA2_TEST_LDFLAGS += -lpjsua2-$(TARGET_NAME) -lstdc++ $(PJ_LDFLAGS) $(PJ_LDLIBS) $(LDFLAGS) 155 export PJSUA2_TEST_EXE := pjsua2-test-$(TARGET_NAME)$(HOST_EXE) 156 157 export CC_OUT CC AR RANLIB HOST_MV HOST_RM HOST_RMDIR HOST_MKDIR OBJEXT LD LDOUT 158 131 159 132 160 ############################################################################### … … 167 195 $(PJSIP_UA_LIB) $(PJSIP_UA_SONAME) \ 168 196 $(PJSUA_LIB_LIB) $(PJSUA_LIB_SONAME) \ 169 $(TEST_EXE) 197 $(PJSUA2_LIB_LIB) $(PJSUA2_LIB_SONAME) \ 198 $(TEST_EXE) \ 199 $(PJSUA2_TEST_EXE) 170 200 171 201 all: $(TARGETS) … … 191 221 .PHONY: $(PJSIP_SIMPLE_LIB) $(PJSIP_SIMPLE_SONAME) 192 222 .PHONY: $(PJSUA_LIB_LIB) $(PJSUA_LIB_SONAME) 223 .PHONY: $(PJSUA2_LIB_LIB) $(PJSUA2_LIB_SONAME) 193 224 .PHONY: $(TEST_EXE) 225 .PHONY: $(PJSUA2_TEST_EXE) 194 226 195 227 pjsip: $(PJSIP_LIB) … … 221 253 $(MAKE) -f $(RULES_MAK) APP=TEST app=pjsip-test $(subst /,$(HOST_PSEP),$(BINDIR)/$@) 222 254 255 pjsua2-test: $(PJSUA2_TEST_EXE) 256 $(PJSUA2_TEST_EXE): $(PJSIP_LIB) $(PJSIP_SONAME) 257 $(PJSUA2_TEST_EXE): $(PJSIP_UA_LIB) $(PJSIP_UA_SONAME) 258 $(PJSUA2_TEST_EXE): $(PJSIP_SIMPLE_LIB) $(PJSIP_SIMPLE_SONAME) 259 $(PJSUA2_TEST_EXE): $(PJSUA_LIB_LIB) $(PJSUA_LIB_SONAME) 260 $(PJSUA2_TEST_EXE): $(PJSUA2_LIB_LIB) $(PJSUA2_LIB_SONAME) 261 $(MAKE) -f $(RULES_MAK) APP=PJSUA2_TEST app=pjsua2-test $(subst /,$(HOST_PSEP),$(BINDIR)/$@) 262 223 263 .PHONY: pjsip.ko 224 264 pjsip.ko: … … 240 280 echo Making $@ 241 281 $(MAKE) -f $(RULES_MAK) APP=PJSUA_LIB app=pjsua-lib $(subst /,$(HOST_PSEP),$(LIBDIR)/$@) 282 283 .PHONY: pjsua2-lib.ko 284 pjsua2-lib.ko: 285 echo Making $@ 286 $(MAKE) -f $(RULES_MAK) APP=PJSUA2_LIB app=pjsua2-lib $(subst /,$(HOST_PSEP),$(LIBDIR)/$@) 242 287 243 288 clean: … … 246 291 $(MAKE) -f $(RULES_MAK) APP=PJSIP_SIMPLE app=pjsip-simple $@ 247 292 $(MAKE) -f $(RULES_MAK) APP=PJSUA_LIB app=pjsua-lib $@ 293 $(MAKE) -f $(RULES_MAK) APP=PJSUA2_LIB app=pjsua2-lib $@ 248 294 $(MAKE) -f $(RULES_MAK) APP=TEST app=pjsip-test $@ 295 $(MAKE) -f $(RULES_MAK) APP=PJSUA2_TEST app=pjsua2-test $@ 249 296 250 297 depend: … … 253 300 $(MAKE) -f $(RULES_MAK) APP=PJSIP_SIMPLE app=pjsip-simple $@ 254 301 $(MAKE) -f $(RULES_MAK) APP=PJSUA_LIB app=pjsua-lib $@ 302 $(MAKE) -f $(RULES_MAK) APP=PJSUA2_LIB app=pjsua2-lib $@ 255 303 $(MAKE) -f $(RULES_MAK) APP=TEST app=pjsip-test $@ 304 $(MAKE) -f $(RULES_MAK) APP=PJSUA2_TEST app=pjsua2-test $@ 256 305 echo '$(BINDIR)/$(TEST_EXE): $(PJMEDIA_LIB) $(LIBDIR)/$(PJSUA_LIB_LIB) $(LIBDIR)/$(PJSIP_SIMPLE_LIB) $(LIBDIR)/$(PJSIP_UA_LIB) $(LIBDIR)/$(PJSIP_LIB) $(PJNATH_LIB) $(PJLIB_UTIL_LIB) $(PJLIB_LIB)' >> .pjsip-test-$(TARGET_NAME).depend 306 echo '$(BINDIR)/$(PJSUA2_TEST_EXE): $(PJSUA2_LIB_LIB) $(PJMEDIA_LIB) $(LIBDIR)/$(PJSUA_LIB_LIB) $(LIBDIR)/$(PJSIP_SIMPLE_LIB) $(LIBDIR)/$(PJSIP_UA_LIB) $(LIBDIR)/$(PJSIP_LIB) $(PJNATH_LIB) $(PJLIB_UTIL_LIB) $(PJLIB_LIB)' >> .pjsua2-test-$(TARGET_NAME).depend 257 307 258 308 realclean: … … 261 311 $(subst @@,$(subst /,$(HOST_PSEP),.pjsip-simple-$(TARGET_NAME).depend),$(HOST_RMR)) 262 312 $(subst @@,$(subst /,$(HOST_PSEP),.pjsua-lib-$(TARGET_NAME).depend),$(HOST_RMR)) 313 $(subst @@,$(subst /,$(HOST_PSEP),.pjsua2-lib-$(TARGET_NAME).depend),$(HOST_RMR)) 314 $(subst @@,$(subst /,$(HOST_PSEP),.pjsua2-test-$(TARGET_NAME).depend),$(HOST_RMR)) 263 315 $(MAKE) -f $(RULES_MAK) APP=PJSIP app=pjsip $@ 264 316 $(MAKE) -f $(RULES_MAK) APP=PJSIP_UA app=pjsip-ua $@ … … 266 318 $(MAKE) -f $(RULES_MAK) APP=TEST app=pjsip-test $@ 267 319 $(MAKE) -f $(RULES_MAK) APP=PJSUA_LIB app=pjsua-lib $@ 268 269 270 320 $(MAKE) -f $(RULES_MAK) APP=PJSUA2_LIB app=pjsua2-lib $@ 321 $(MAKE) -f $(RULES_MAK) APP=PJSUA2_TEST app=pjsua2-test $@ 322 323 324 -
pjproject/trunk/pjsip/docs/doxygen.cfg
r3669 r4704 357 357 # *.h++ *.idl *.odl 358 358 359 FILE_PATTERNS = *.h 359 FILE_PATTERNS = *.h *.hpp 360 360 361 361 # The RECURSIVE tag can be used to turn specify whether or not subdirectories -
pjproject/trunk/pjsip/include/pjsip-simple/evsub.h
r3553 r4704 59 59 * in state_str member of the susbcription structure. 60 60 */ 61 enum pjsip_evsub_state61 typedef enum pjsip_evsub_state 62 62 { 63 63 PJSIP_EVSUB_STATE_NULL, /**< State is NULL. */ … … 71 71 Application can query the state by 72 72 calling #pjsip_evsub_get_state_name().*/ 73 }; 74 75 /** 76 * @see pjsip_evsub_state 77 */ 78 typedef enum pjsip_evsub_state pjsip_evsub_state; 73 } pjsip_evsub_state; 79 74 80 75 -
pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h
r4667 r4704 252 252 253 253 /** Constant to identify invalid ID for all sorts of IDs. */ 254 #define PJSUA_INVALID_ID (-1) 254 enum pjsua_invalid_id_const_ 255 { 256 PJSUA_INVALID_ID = -1 257 }; 255 258 256 259 /** Disabled features temporarily for media reorganization */ … … 1881 1884 1882 1885 /** 1886 * Register a thread to poll for events. This function should be 1887 * called by an external worker thread, and it will block polling 1888 * for events until the library is destroyed. 1889 * 1890 * @return PJ_SUCCESS if things are working correctly 1891 * or an error polling cannot be done for some 1892 * reason. 1893 */ 1894 PJ_DECL(pj_status_t) pjsua_register_worker_thread(const char *name); 1895 1896 1897 /** 1898 * Signal all worker threads to quit. This will only wait until internal 1899 * threads are done. For external threads, application must perform 1900 * its own waiting for the external threads to quit from 1901 * pjsua_register_worker_thread() function. 1902 */ 1903 PJ_DECL(void) pjsua_stop_worker_threads(void); 1904 1905 /** 1883 1906 * Create memory pool to be used by the application. Once application 1884 1907 * finished using the pool, it must be released with pj_pool_release(). … … 5778 5801 pj_str_t name; 5779 5802 5803 /** Format. */ 5804 pjmedia_format format; 5805 5780 5806 /** Clock rate. */ 5781 5807 unsigned clock_rate; … … 5789 5815 /** Bits per sample */ 5790 5816 unsigned bits_per_sample; 5817 5818 /** Tx level adjustment. */ 5819 float tx_level_adj; 5820 5821 /** Rx level adjustment. */ 5822 float rx_level_adj; 5791 5823 5792 5824 /** Number of listeners in the array. */ -
pjproject/trunk/pjsip/src/pjsip/sip_endpoint.c
r4537 r4704 924 924 pj_bool_t handled = PJ_FALSE; 925 925 926 PJ_UNUSED_ARG(msg); 927 926 928 if (status != PJ_SUCCESS) { 927 929 char info[30]; -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_aud.c
r4613 r4704 742 742 info->slot_id = id; 743 743 info->name = cinfo.name; 744 pjmedia_format_copy(&info->format, &cinfo.format); 744 745 info->clock_rate = cinfo.clock_rate; 745 746 info->channel_count = cinfo.channel_count; 746 747 info->samples_per_frame = cinfo.samples_per_frame; 747 748 info->bits_per_sample = cinfo.bits_per_sample; 749 info->tx_level_adj = ((float)cinfo.tx_adj_level) / 128 + 1; 750 info->rx_level_adj = ((float)cinfo.rx_adj_level) / 128 + 1; 748 751 749 752 /* Build array of listeners */ -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
r4694 r4704 700 700 } 701 701 702 PJ_DEF(pj_status_t) pjsua_register_worker_thread(const char *name) 703 { 704 pj_thread_desc desc; 705 pj_thread_t *thread; 706 pj_status_t status; 707 708 if (pjsua_var.thread_quit_flag) 709 return PJ_EGONE; 710 711 status = pj_thread_register(NULL, desc, &thread); 712 if (status != PJ_SUCCESS) 713 return status; 714 715 if (name) 716 PJ_LOG(4,(THIS_FILE, "Worker thread %s started", name)); 717 718 worker_thread(NULL); 719 720 if (name) 721 PJ_LOG(4,(THIS_FILE, "Worker thread %s stopped", name)); 722 723 return PJ_SUCCESS; 724 } 725 726 PJ_DEF(void) pjsua_stop_worker_threads(void) 727 { 728 unsigned i; 729 730 pjsua_var.thread_quit_flag = 1; 731 732 /* Wait worker threads to quit: */ 733 for (i=0; i<(int)pjsua_var.ua_cfg.thread_cnt; ++i) { 734 if (pjsua_var.thread[i]) { 735 pj_status_t status; 736 status = pj_thread_join(pjsua_var.thread[i]); 737 if (status != PJ_SUCCESS) { 738 PJ_PERROR(4,(THIS_FILE, status, "Error joining worker thread")); 739 pj_thread_sleep(1000); 740 } 741 pj_thread_destroy(pjsua_var.thread[i]); 742 pjsua_var.thread[i] = NULL; 743 } 744 } 745 } 702 746 703 747 /* Init random seed */ … … 1479 1523 1480 1524 /* Signal threads to quit: */ 1481 pjsua_var.thread_quit_flag = 1; 1482 1483 /* Wait worker threads to quit: */ 1484 for (i=0; i<(int)pjsua_var.ua_cfg.thread_cnt; ++i) { 1485 if (pjsua_var.thread[i]) { 1486 pj_status_t status; 1487 status = pj_thread_join(pjsua_var.thread[i]); 1488 if (status != PJ_SUCCESS) { 1489 PJ_PERROR(4,(THIS_FILE, status, "Error joining worker thread")); 1490 pj_thread_sleep(1000); 1491 } 1492 pj_thread_destroy(pjsua_var.thread[i]); 1493 pjsua_var.thread[i] = NULL; 1494 } 1495 } 1525 pjsua_stop_worker_threads(); 1496 1526 1497 1527 if (pjsua_var.endpt) {
Note: See TracChangeset
for help on using the changeset viewer.