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