]> git.mxchange.org Git - flightgear.git/blob - src/Network/http/CMakeLists.txt
Interim windows build fix
[flightgear.git] / src / Network / http / CMakeLists.txt
1 include(FlightGearComponent)
2
3 set(SOURCES
4         httpd.cxx
5         ScreenshotUriHandler.cxx
6         PropertyUriHandler.cxx
7         JsonUriHandler.cxx
8     FlightHistoryUriHandler.cxx
9         PkgUriHandler.cxx
10         RunUriHandler.cxx
11         NavdbUriHandler.cxx
12         PropertyChangeWebsocket.cxx
13         PropertyChangeObserver.cxx
14         jsonprops.cxx
15         SimpleDOM.cxx
16         )
17
18 set(HEADERS
19         urihandler.hxx
20         httpd.hxx
21         ScreenshotUriHandler.hxx
22         PropertyUriHandler.hxx
23         JsonUriHandler.hxx
24     FlightHistoryUriHandler.hxx
25         PkgUriHandler.hxx
26         RunUriHandler.hxx
27         NavdbUriHandler.hxx
28         HTTPRequest.hxx
29         Websocket.hxx
30         PropertyChangeWebsocket.hxx
31         PropertyChangeObserver.hxx
32         jsonprops.hxx
33     SimpleDOM.hxx
34         )
35
36 flightgear_component(Http "${SOURCES}" "${HEADERS}")