blob: dc894368d84e7fe58cc3f5f01f73539368a984cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
cmake_minimum_required (VERSION 2.6)
project (MCServer)
include_directories ("${PROJECT_SOURCE_DIR}/../")
file(GLOB SOURCE
"*.cpp"
"*.h"
)
add_library(HTTPServer ${SOURCE})
|