diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2005-08-23 05:53:14 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2005-08-23 05:53:14 +0000 |
commit | 773e35ced30fa2c03ddb2a332bf8a9aebb56aa44 (patch) | |
tree | 03e8e9a4bd64b9424006315c8e720c3f2841a751 /socket.vcproj | |
parent | 5e8ae76248ed31496dc6fef7855498a0479159ed (diff) | |
download | luasocket-773e35ced30fa2c03ddb2a332bf8a9aebb56aa44.tar.gz luasocket-773e35ced30fa2c03ddb2a332bf8a9aebb56aa44.tar.bz2 luasocket-773e35ced30fa2c03ddb2a332bf8a9aebb56aa44.zip |
Compiled on Windows. Fixed a bunch of stuff. Almost ready to release.
Implemented a nice dispatcher! Non-blocking check-links and forward server
use the dispatcher.
Diffstat (limited to 'socket.vcproj')
-rw-r--r-- | socket.vcproj | 177 |
1 files changed, 177 insertions, 0 deletions
diff --git a/socket.vcproj b/socket.vcproj new file mode 100644 index 0000000..ddfb46e --- /dev/null +++ b/socket.vcproj | |||
@@ -0,0 +1,177 @@ | |||
1 | <?xml version="1.0" encoding="Windows-1252"?> | ||
2 | <VisualStudioProject | ||
3 | ProjectType="Visual C++" | ||
4 | Version="7.10" | ||
5 | Name="socket" | ||
6 | ProjectGUID="{66E3CE14-884D-4AEA-9F20-15A0BEAF8C5A}" | ||
7 | Keyword="Win32Proj"> | ||
8 | <Platforms> | ||
9 | <Platform | ||
10 | Name="Win32"/> | ||
11 | </Platforms> | ||
12 | <Configurations> | ||
13 | <Configuration | ||
14 | Name="Debug|Win32" | ||
15 | OutputDirectory="src" | ||
16 | IntermediateDirectory="src" | ||
17 | ConfigurationType="2" | ||
18 | CharacterSet="2"> | ||
19 | <Tool | ||
20 | Name="VCCLCompilerTool" | ||
21 | Optimization="0" | ||
22 | AdditionalIncludeDirectories="src\compat-5.1r4, ..\lua-5.0.2\include, src" | ||
23 | PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;LUASOCKET_EXPORTS;LUASOCKET_API=__declspec(dllexport)" | ||
24 | MinimalRebuild="TRUE" | ||
25 | BasicRuntimeChecks="3" | ||
26 | RuntimeLibrary="3" | ||
27 | UsePrecompiledHeader="0" | ||
28 | WarningLevel="3" | ||
29 | Detect64BitPortabilityProblems="TRUE" | ||
30 | DebugInformationFormat="4"/> | ||
31 | <Tool | ||
32 | Name="VCCustomBuildTool"/> | ||
33 | <Tool | ||
34 | Name="VCLinkerTool" | ||
35 | AdditionalDependencies="ws2_32.lib" | ||
36 | OutputFile="$(OutDir)/socket.dll" | ||
37 | LinkIncremental="2" | ||
38 | GenerateDebugInformation="TRUE" | ||
39 | ProgramDatabaseFile="$(OutDir)/socket.pdb" | ||
40 | SubSystem="2" | ||
41 | ImportLibrary="$(OutDir)/socket.lib" | ||
42 | TargetMachine="1"/> | ||
43 | <Tool | ||
44 | Name="VCMIDLTool"/> | ||
45 | <Tool | ||
46 | Name="VCPostBuildEventTool"/> | ||
47 | <Tool | ||
48 | Name="VCPreBuildEventTool"/> | ||
49 | <Tool | ||
50 | Name="VCPreLinkEventTool"/> | ||
51 | <Tool | ||
52 | Name="VCResourceCompilerTool"/> | ||
53 | <Tool | ||
54 | Name="VCWebServiceProxyGeneratorTool"/> | ||
55 | <Tool | ||
56 | Name="VCXMLDataGeneratorTool"/> | ||
57 | <Tool | ||
58 | Name="VCWebDeploymentTool"/> | ||
59 | <Tool | ||
60 | Name="VCManagedWrapperGeneratorTool"/> | ||
61 | <Tool | ||
62 | Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | ||
63 | </Configuration> | ||
64 | <Configuration | ||
65 | Name="Release|Win32" | ||
66 | OutputDirectory="./src" | ||
67 | IntermediateDirectory="./src" | ||
68 | ConfigurationType="2" | ||
69 | CharacterSet="2"> | ||
70 | <Tool | ||
71 | Name="VCCLCompilerTool" | ||
72 | AdditionalIncludeDirectories="src\compat-5.1r4, ..\lua-5.0.2\include" | ||
73 | PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;LUASOCKET_EXPORTS;LUASOCKET_API=__declspec(dllexport); LUASOCKET_DEBUG" | ||
74 | RuntimeLibrary="2" | ||
75 | UsePrecompiledHeader="0" | ||
76 | WarningLevel="3" | ||
77 | Detect64BitPortabilityProblems="TRUE" | ||
78 | DebugInformationFormat="0"/> | ||
79 | <Tool | ||
80 | Name="VCCustomBuildTool"/> | ||
81 | <Tool | ||
82 | Name="VCLinkerTool" | ||
83 | AdditionalDependencies="ws2_32.lib" | ||
84 | OutputFile="$(OutDir)/socket.dll" | ||
85 | LinkIncremental="1" | ||
86 | GenerateDebugInformation="TRUE" | ||
87 | SubSystem="2" | ||
88 | OptimizeReferences="2" | ||
89 | EnableCOMDATFolding="2" | ||
90 | ImportLibrary="$(OutDir)/socket.lib" | ||
91 | TargetMachine="1"/> | ||
92 | <Tool | ||
93 | Name="VCMIDLTool"/> | ||
94 | <Tool | ||
95 | Name="VCPostBuildEventTool"/> | ||
96 | <Tool | ||
97 | Name="VCPreBuildEventTool"/> | ||
98 | <Tool | ||
99 | Name="VCPreLinkEventTool"/> | ||
100 | <Tool | ||
101 | Name="VCResourceCompilerTool"/> | ||
102 | <Tool | ||
103 | Name="VCWebServiceProxyGeneratorTool"/> | ||
104 | <Tool | ||
105 | Name="VCXMLDataGeneratorTool"/> | ||
106 | <Tool | ||
107 | Name="VCWebDeploymentTool"/> | ||
108 | <Tool | ||
109 | Name="VCManagedWrapperGeneratorTool"/> | ||
110 | <Tool | ||
111 | Name="VCAuxiliaryManagedWrapperGeneratorTool"/> | ||
112 | </Configuration> | ||
113 | </Configurations> | ||
114 | <References> | ||
115 | </References> | ||
116 | <Files> | ||
117 | <Filter | ||
118 | Name="Source Files" | ||
119 | Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx" | ||
120 | UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"> | ||
121 | <File | ||
122 | RelativePath="src\auxiliar.c"> | ||
123 | </File> | ||
124 | <File | ||
125 | RelativePath="src\buffer.c"> | ||
126 | </File> | ||
127 | <File | ||
128 | RelativePath="src\compat-5.1r4\compat-5.1.c"> | ||
129 | </File> | ||
130 | <File | ||
131 | RelativePath="src\except.c"> | ||
132 | </File> | ||
133 | <File | ||
134 | RelativePath="src\inet.c"> | ||
135 | </File> | ||
136 | <File | ||
137 | RelativePath="src\io.c"> | ||
138 | </File> | ||
139 | <File | ||
140 | RelativePath="src\luasocket.c"> | ||
141 | </File> | ||
142 | <File | ||
143 | RelativePath="src\options.c"> | ||
144 | </File> | ||
145 | <File | ||
146 | RelativePath="src\select.c"> | ||
147 | </File> | ||
148 | <File | ||
149 | RelativePath="src\tcp.c"> | ||
150 | </File> | ||
151 | <File | ||
152 | RelativePath="src\timeout.c"> | ||
153 | </File> | ||
154 | <File | ||
155 | RelativePath="src\udp.c"> | ||
156 | </File> | ||
157 | <File | ||
158 | RelativePath="src\wsocket.c"> | ||
159 | </File> | ||
160 | </Filter> | ||
161 | <Filter | ||
162 | Name="Header Files" | ||
163 | Filter="h;hpp;hxx;hm;inl;inc;xsd" | ||
164 | UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"> | ||
165 | </Filter> | ||
166 | <Filter | ||
167 | Name="Resource Files" | ||
168 | Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx" | ||
169 | UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"> | ||
170 | </Filter> | ||
171 | <File | ||
172 | RelativePath="..\lua-5.0.2\lib\lua50.lib"> | ||
173 | </File> | ||
174 | </Files> | ||
175 | <Globals> | ||
176 | </Globals> | ||
177 | </VisualStudioProject> | ||