zstdlib.vcproj 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546
  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <VisualStudioProject
  3. ProjectType="Visual C++"
  4. Version="8.00"
  5. Name="zstdlib"
  6. ProjectGUID="{99DE2A79-7298-4004-A0ED-030D7A3796CA}"
  7. RootNamespace="zstdlib"
  8. Keyword="Win32Proj"
  9. >
  10. <Platforms>
  11. <Platform
  12. Name="Win32"
  13. />
  14. <Platform
  15. Name="x64"
  16. />
  17. </Platforms>
  18. <ToolFiles>
  19. </ToolFiles>
  20. <Configurations>
  21. <Configuration
  22. Name="Debug|Win32"
  23. OutputDirectory="$(SolutionDir)bin\$(PlatformName)\$(ConfigurationName)"
  24. IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
  25. ConfigurationType="2"
  26. CharacterSet="2"
  27. >
  28. <Tool
  29. Name="VCPreBuildEventTool"
  30. />
  31. <Tool
  32. Name="VCCustomBuildTool"
  33. />
  34. <Tool
  35. Name="VCXMLDataGeneratorTool"
  36. />
  37. <Tool
  38. Name="VCWebServiceProxyGeneratorTool"
  39. />
  40. <Tool
  41. Name="VCMIDLTool"
  42. />
  43. <Tool
  44. Name="VCCLCompilerTool"
  45. Optimization="0"
  46. AdditionalIncludeDirectories="$(SolutionDir)..\..\lib;$(SolutionDir)..\..\lib\common;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\programs\legacy;$(SolutionDir)..\..\lib\dictBuilder"
  47. PreprocessorDefinitions="ZSTD_DLL_EXPORT=1;ZSTD_MULTITHREAD=1;ZSTD_LEGACY_SUPPORT=4;WIN32;_DEBUG;_CONSOLE"
  48. MinimalRebuild="true"
  49. BasicRuntimeChecks="3"
  50. RuntimeLibrary="3"
  51. UsePrecompiledHeader="0"
  52. WarningLevel="4"
  53. WarnAsError="true"
  54. DebugInformationFormat="4"
  55. />
  56. <Tool
  57. Name="VCManagedResourceCompilerTool"
  58. />
  59. <Tool
  60. Name="VCResourceCompilerTool"
  61. />
  62. <Tool
  63. Name="VCPreLinkEventTool"
  64. />
  65. <Tool
  66. Name="VCLinkerTool"
  67. LinkIncremental="2"
  68. GenerateDebugInformation="true"
  69. SubSystem="1"
  70. TargetMachine="1"
  71. />
  72. <Tool
  73. Name="VCALinkTool"
  74. />
  75. <Tool
  76. Name="VCManifestTool"
  77. />
  78. <Tool
  79. Name="VCXDCMakeTool"
  80. />
  81. <Tool
  82. Name="VCBscMakeTool"
  83. />
  84. <Tool
  85. Name="VCFxCopTool"
  86. />
  87. <Tool
  88. Name="VCAppVerifierTool"
  89. />
  90. <Tool
  91. Name="VCPostBuildEventTool"
  92. />
  93. </Configuration>
  94. <Configuration
  95. Name="Release|Win32"
  96. OutputDirectory="$(SolutionDir)bin\$(PlatformName)\$(ConfigurationName)"
  97. IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
  98. ConfigurationType="2"
  99. CharacterSet="2"
  100. WholeProgramOptimization="1"
  101. >
  102. <Tool
  103. Name="VCPreBuildEventTool"
  104. />
  105. <Tool
  106. Name="VCCustomBuildTool"
  107. />
  108. <Tool
  109. Name="VCXMLDataGeneratorTool"
  110. />
  111. <Tool
  112. Name="VCWebServiceProxyGeneratorTool"
  113. />
  114. <Tool
  115. Name="VCMIDLTool"
  116. />
  117. <Tool
  118. Name="VCCLCompilerTool"
  119. Optimization="2"
  120. EnableIntrinsicFunctions="true"
  121. OmitFramePointers="true"
  122. AdditionalIncludeDirectories="$(SolutionDir)..\..\lib;$(SolutionDir)..\..\lib\common;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\programs\legacy;$(SolutionDir)..\..\lib\dictBuilder"
  123. PreprocessorDefinitions="ZSTD_DLL_EXPORT=1;ZSTD_MULTITHREAD=1;ZSTD_LEGACY_SUPPORT=4;WIN32;NDEBUG;_CONSOLE"
  124. RuntimeLibrary="0"
  125. EnableFunctionLevelLinking="true"
  126. UsePrecompiledHeader="0"
  127. WarningLevel="4"
  128. DebugInformationFormat="3"
  129. />
  130. <Tool
  131. Name="VCManagedResourceCompilerTool"
  132. />
  133. <Tool
  134. Name="VCResourceCompilerTool"
  135. />
  136. <Tool
  137. Name="VCPreLinkEventTool"
  138. />
  139. <Tool
  140. Name="VCLinkerTool"
  141. LinkIncremental="1"
  142. GenerateDebugInformation="true"
  143. SubSystem="1"
  144. OptimizeReferences="2"
  145. EnableCOMDATFolding="2"
  146. TargetMachine="1"
  147. />
  148. <Tool
  149. Name="VCALinkTool"
  150. />
  151. <Tool
  152. Name="VCManifestTool"
  153. />
  154. <Tool
  155. Name="VCXDCMakeTool"
  156. />
  157. <Tool
  158. Name="VCBscMakeTool"
  159. />
  160. <Tool
  161. Name="VCFxCopTool"
  162. />
  163. <Tool
  164. Name="VCAppVerifierTool"
  165. />
  166. <Tool
  167. Name="VCPostBuildEventTool"
  168. />
  169. </Configuration>
  170. <Configuration
  171. Name="Debug|x64"
  172. OutputDirectory="$(SolutionDir)bin\$(PlatformName)\$(ConfigurationName)"
  173. IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
  174. ConfigurationType="2"
  175. CharacterSet="2"
  176. >
  177. <Tool
  178. Name="VCPreBuildEventTool"
  179. />
  180. <Tool
  181. Name="VCCustomBuildTool"
  182. />
  183. <Tool
  184. Name="VCXMLDataGeneratorTool"
  185. />
  186. <Tool
  187. Name="VCWebServiceProxyGeneratorTool"
  188. />
  189. <Tool
  190. Name="VCMIDLTool"
  191. TargetEnvironment="3"
  192. />
  193. <Tool
  194. Name="VCCLCompilerTool"
  195. Optimization="0"
  196. AdditionalIncludeDirectories="$(SolutionDir)..\..\lib;$(SolutionDir)..\..\lib\common;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\programs\legacy;$(SolutionDir)..\..\lib\dictBuilder"
  197. PreprocessorDefinitions="ZSTD_DLL_EXPORT=1;ZSTD_MULTITHREAD=1;ZSTD_LEGACY_SUPPORT=4;WIN32;_DEBUG;_CONSOLE"
  198. MinimalRebuild="true"
  199. BasicRuntimeChecks="3"
  200. RuntimeLibrary="3"
  201. UsePrecompiledHeader="0"
  202. WarningLevel="4"
  203. WarnAsError="true"
  204. DebugInformationFormat="3"
  205. />
  206. <Tool
  207. Name="VCManagedResourceCompilerTool"
  208. />
  209. <Tool
  210. Name="VCResourceCompilerTool"
  211. />
  212. <Tool
  213. Name="VCPreLinkEventTool"
  214. />
  215. <Tool
  216. Name="VCLinkerTool"
  217. LinkIncremental="2"
  218. GenerateDebugInformation="true"
  219. SubSystem="1"
  220. TargetMachine="17"
  221. />
  222. <Tool
  223. Name="VCALinkTool"
  224. />
  225. <Tool
  226. Name="VCManifestTool"
  227. />
  228. <Tool
  229. Name="VCXDCMakeTool"
  230. />
  231. <Tool
  232. Name="VCBscMakeTool"
  233. />
  234. <Tool
  235. Name="VCFxCopTool"
  236. />
  237. <Tool
  238. Name="VCAppVerifierTool"
  239. />
  240. <Tool
  241. Name="VCPostBuildEventTool"
  242. />
  243. </Configuration>
  244. <Configuration
  245. Name="Release|x64"
  246. OutputDirectory="$(SolutionDir)bin\$(PlatformName)\$(ConfigurationName)"
  247. IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
  248. ConfigurationType="2"
  249. CharacterSet="2"
  250. WholeProgramOptimization="1"
  251. >
  252. <Tool
  253. Name="VCPreBuildEventTool"
  254. />
  255. <Tool
  256. Name="VCCustomBuildTool"
  257. />
  258. <Tool
  259. Name="VCXMLDataGeneratorTool"
  260. />
  261. <Tool
  262. Name="VCWebServiceProxyGeneratorTool"
  263. />
  264. <Tool
  265. Name="VCMIDLTool"
  266. TargetEnvironment="3"
  267. />
  268. <Tool
  269. Name="VCCLCompilerTool"
  270. Optimization="2"
  271. EnableIntrinsicFunctions="true"
  272. OmitFramePointers="true"
  273. AdditionalIncludeDirectories="$(SolutionDir)..\..\lib;$(SolutionDir)..\..\lib\common;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\programs\legacy;$(SolutionDir)..\..\lib\dictBuilder"
  274. PreprocessorDefinitions="ZSTD_DLL_EXPORT=1;ZSTD_MULTITHREAD=1;ZSTD_LEGACY_SUPPORT=4;WIN32;NDEBUG;_CONSOLE"
  275. RuntimeLibrary="0"
  276. EnableFunctionLevelLinking="true"
  277. UsePrecompiledHeader="0"
  278. WarningLevel="4"
  279. DebugInformationFormat="3"
  280. />
  281. <Tool
  282. Name="VCManagedResourceCompilerTool"
  283. />
  284. <Tool
  285. Name="VCResourceCompilerTool"
  286. />
  287. <Tool
  288. Name="VCPreLinkEventTool"
  289. />
  290. <Tool
  291. Name="VCLinkerTool"
  292. LinkIncremental="1"
  293. GenerateDebugInformation="true"
  294. SubSystem="1"
  295. OptimizeReferences="2"
  296. EnableCOMDATFolding="2"
  297. TargetMachine="17"
  298. />
  299. <Tool
  300. Name="VCALinkTool"
  301. />
  302. <Tool
  303. Name="VCManifestTool"
  304. />
  305. <Tool
  306. Name="VCXDCMakeTool"
  307. />
  308. <Tool
  309. Name="VCBscMakeTool"
  310. />
  311. <Tool
  312. Name="VCFxCopTool"
  313. />
  314. <Tool
  315. Name="VCAppVerifierTool"
  316. />
  317. <Tool
  318. Name="VCPostBuildEventTool"
  319. />
  320. </Configuration>
  321. </Configurations>
  322. <References>
  323. </References>
  324. <Files>
  325. <Filter
  326. Name="Source Files"
  327. Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
  328. UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
  329. >
  330. <File
  331. RelativePath="..\..\..\lib\dictBuilder\cover.c"
  332. >
  333. </File>
  334. <File
  335. RelativePath="..\..\..\lib\dictBuilder\divsufsort.c"
  336. >
  337. </File>
  338. <File
  339. RelativePath="..\..\..\lib\common\pool.c"
  340. >
  341. </File>
  342. <File
  343. RelativePath="..\..\..\lib\common\threading.c"
  344. >
  345. </File>
  346. <File
  347. RelativePath="..\..\..\lib\common\entropy_common.c"
  348. >
  349. </File>
  350. <File
  351. RelativePath="..\..\..\lib\common\error_private.c"
  352. >
  353. </File>
  354. <File
  355. RelativePath="..\..\..\lib\compress\fse_compress.c"
  356. >
  357. </File>
  358. <File
  359. RelativePath="..\..\..\lib\common\fse_decompress.c"
  360. >
  361. </File>
  362. <File
  363. RelativePath="..\..\..\lib\compress\huf_compress.c"
  364. >
  365. </File>
  366. <File
  367. RelativePath="..\..\..\lib\decompress\huf_decompress.c"
  368. >
  369. </File>
  370. <File
  371. RelativePath="..\..\..\lib\common\xxhash.c"
  372. >
  373. </File>
  374. <File
  375. RelativePath="..\..\..\lib\dictBuilder\zdict.c"
  376. >
  377. </File>
  378. <File
  379. RelativePath="..\..\..\lib\common\zstd_common.c"
  380. >
  381. </File>
  382. <File
  383. RelativePath="..\..\..\lib\compress\zstdmt_compress.c"
  384. >
  385. </File>
  386. <File
  387. RelativePath="..\..\..\lib\compress\zstd_compress.c"
  388. >
  389. </File>
  390. <File
  391. RelativePath="..\..\..\lib\decompress\zstd_decompress.c"
  392. >
  393. </File>
  394. <File
  395. RelativePath="..\..\..\lib\legacy\zstd_v01.c"
  396. >
  397. </File>
  398. <File
  399. RelativePath="..\..\..\lib\legacy\zstd_v02.c"
  400. >
  401. </File>
  402. <File
  403. RelativePath="..\..\..\lib\legacy\zstd_v03.c"
  404. >
  405. </File>
  406. <File
  407. RelativePath="..\..\..\lib\legacy\zstd_v04.c"
  408. >
  409. </File>
  410. <File
  411. RelativePath="..\..\..\lib\legacy\zstd_v05.c"
  412. >
  413. </File>
  414. <File
  415. RelativePath="..\..\..\lib\legacy\zstd_v06.c"
  416. >
  417. </File>
  418. <File
  419. RelativePath="..\..\..\lib\legacy\zstd_v07.c"
  420. >
  421. </File>
  422. </Filter>
  423. <Filter
  424. Name="Header Files"
  425. Filter="h;hpp;hxx;hm;inl;inc;xsd"
  426. UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
  427. >
  428. <File
  429. RelativePath="..\..\..\lib\common\bitstream.h"
  430. >
  431. </File>
  432. <File
  433. RelativePath="..\..\..\lib\dictBuilder\divsufsort.h"
  434. >
  435. </File>
  436. <File
  437. RelativePath="..\..\..\lib\common\pool.h"
  438. >
  439. </File>
  440. <File
  441. RelativePath="..\..\..\lib\common\threading.h"
  442. >
  443. </File>
  444. <File
  445. RelativePath="..\..\..\lib\common\error_private.h"
  446. >
  447. </File>
  448. <File
  449. RelativePath="..\..\..\lib\zstd_errors.h"
  450. >
  451. </File>
  452. <File
  453. RelativePath="..\..\..\lib\common\fse.h"
  454. >
  455. </File>
  456. <File
  457. RelativePath="..\..\..\lib\common\fse_static.h"
  458. >
  459. </File>
  460. <File
  461. RelativePath="..\..\..\lib\common\huf.h"
  462. >
  463. </File>
  464. <File
  465. RelativePath="..\..\..\lib\common\huf_static.h"
  466. >
  467. </File>
  468. <File
  469. RelativePath="..\..\..\lib\common\mem.h"
  470. >
  471. </File>
  472. <File
  473. RelativePath="..\..\..\lib\common\xxhash.h"
  474. >
  475. </File>
  476. <File
  477. RelativePath="..\..\..\lib\zdict.h"
  478. >
  479. </File>
  480. <File
  481. RelativePath="..\..\..\lib\dictBuilder\zdict_static.h"
  482. >
  483. </File>
  484. <File
  485. RelativePath="..\..\..\lib\zstd.h"
  486. >
  487. </File>
  488. <File
  489. RelativePath="..\..\..\lib\common\zstd_internal.h"
  490. >
  491. </File>
  492. <File
  493. RelativePath="..\..\..\lib\legacy\zstd_legacy.h"
  494. >
  495. </File>
  496. <File
  497. RelativePath="..\..\..\lib\compress\zstd_opt.h"
  498. >
  499. </File>
  500. <File
  501. RelativePath="..\..\..\lib\compress\zstdmt_compress.h"
  502. >
  503. </File>
  504. <File
  505. RelativePath="..\..\..\lib\common\zstd_static.h"
  506. >
  507. </File>
  508. <File
  509. RelativePath="..\..\..\lib\legacy\zstd_v01.h"
  510. >
  511. </File>
  512. <File
  513. RelativePath="..\..\..\lib\legacy\zstd_v02.h"
  514. >
  515. </File>
  516. <File
  517. RelativePath="..\..\..\lib\legacy\zstd_v03.h"
  518. >
  519. </File>
  520. <File
  521. RelativePath="..\..\..\lib\legacy\zstd_v04.h"
  522. >
  523. </File>
  524. <File
  525. RelativePath="..\..\..\lib\legacy\zstd_v05.h"
  526. >
  527. </File>
  528. <File
  529. RelativePath="..\..\..\lib\legacy\zstd_v06.h"
  530. >
  531. </File>
  532. <File
  533. RelativePath="..\..\..\lib\legacy\zstd_v07.h"
  534. >
  535. </File>
  536. </Filter>
  537. <Filter
  538. Name="Resource Files"
  539. Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
  540. UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
  541. >
  542. </Filter>
  543. </Files>
  544. <Globals>
  545. </Globals>
  546. </VisualStudioProject>