summaryrefslogtreecommitdiffstats
path: root/src/HTTPServer/CMakeLists.txt
blob: ab3828aaec98c650ede41ab3cd121cf44c9550c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

cmake_minimum_required (VERSION 2.6)
project (MCServer)

include_directories ("${PROJECT_SOURCE_DIR}/../")

SET (SRCS
	EnvelopeParser.cpp
	HTTPConnection.cpp
	HTTPFormParser.cpp
	HTTPMessage.cpp
	HTTPServer.cpp
	MultipartParser.cpp
	NameValueParser.cpp
	SslHTTPConnection.cpp)

SET (HDRS
	EnvelopeParser.h
	HTTPConnection.h
	HTTPFormParser.h
	HTTPMessage.h
	HTTPServer.h
	MultipartParser.h
	NameValueParser.h
	SslHTTPConnection.h)

if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
	set_source_files_properties(HTTPServer.cpp PROPERTIES COMPILE_FLAGS "-Wno-error=global-constructors -Wno-error=old-style-cast")
	set_source_files_properties(HTTPConnection.cpp PROPERTIES COMPILE_FLAGS "-Wno-error=switch-enum")
endif()

if(NOT MSVC)
	add_library(HTTPServer ${SRCS} ${HDRS})
endif()