80e1eb37dd
Also upgraded the user setting file for MSVC to 2013.
36 lines
803 B
CMake
36 lines
803 B
CMake
|
|
cmake_minimum_required (VERSION 2.6)
|
|
project (Cuberite)
|
|
|
|
include_directories ("${PROJECT_SOURCE_DIR}/../")
|
|
|
|
SET (SRCS
|
|
Authenticator.cpp
|
|
ChunkDataSerializer.cpp
|
|
MojangAPI.cpp
|
|
Packetizer.cpp
|
|
Protocol17x.cpp
|
|
Protocol18x.cpp
|
|
ProtocolRecognizer.cpp
|
|
)
|
|
|
|
SET (HDRS
|
|
Authenticator.h
|
|
ChunkDataSerializer.h
|
|
MojangAPI.h
|
|
Packetizer.h
|
|
Protocol.h
|
|
Protocol17x.h
|
|
Protocol18x.h
|
|
ProtocolRecognizer.h
|
|
)
|
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
set_source_files_properties(Protocol18x.cpp PROPERTIES COMPILE_FLAGS "-Wno-error=old-style-cast -Wno-error=sign-conversion -Wno-error=conversion -Wno-error=switch-enum -Wno-error=switch")
|
|
set_source_files_properties(Protocol17x.cpp PROPERTIES COMPILE_FLAGS "-Wno-error=switch-enum ")
|
|
endif()
|
|
|
|
if (NOT MSVC)
|
|
add_library(Protocol ${SRCS} ${HDRS})
|
|
endif()
|