mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
dfa9eb6204
- Remove the "kernel32" library reference in all .rbuild files of user-mode modules, because this one is already added by "mingw_common". Also fix the indentation in some files. svn path=/trunk/; revision=44368
20 lines
678 B
Ruby
20 lines
678 B
Ruby
<?xml version="1.0"?>
|
|
<!DOCTYPE project SYSTEM "tools/rbuild/project.dtd">
|
|
<module name="roshttpd" type="win32cui" installbase="system32" installname="roshttpd.exe" stdlib="host">
|
|
<include base="roshttpd">include</include>
|
|
<define name="__USE_W32_SOCKETS" />
|
|
<library>ws2_32</library>
|
|
<library>user32</library>
|
|
<compilerflag compiler="cxx" compilerset="gcc">-Wno-non-virtual-dtor</compilerflag>
|
|
<file>config.cpp</file>
|
|
<file>error.cpp</file>
|
|
<file>http.cpp</file>
|
|
<file>httpd.cpp</file>
|
|
<file>roshttpd.cpp</file>
|
|
<directory name="common" >
|
|
<file>list.cpp</file>
|
|
<file>roshttpd.rc</file>
|
|
<file>socket.cpp</file>
|
|
<file>thread.cpp</file>
|
|
</directory>
|
|
</module>
|