author | unc0rr |
Wed, 21 Nov 2012 00:16:09 +0400 | |
changeset 8079 | 3f3dd3c9b89e |
child 8081 | 5a7ff368cf01 |
permissions | -rw-r--r-- |
8079 | 1 |
find_package(SDL_net REQUIRED) |
2 |
||
3 |
set(CMAKE_C_FLAGS "-std=c99") |
|
4 |
||
5 |
file(GLOB frontlib_src |
|
6 |
*.c *.h |
|
7 |
base64/*.c base64/*.h |
|
8 |
ipc/*.c ipc/*.h |
|
9 |
md5/*.c md5/*.h |
|
10 |
model/*.c model/*.h |
|
11 |
net/*.c net/*.h |
|
12 |
util/*.c util/*.h |
|
13 |
) |
|
14 |
||
15 |
include_directories(${SDLNET_INCLUDE_DIR}) |
|
16 |
||
17 |
add_library(frontlib STATIC ${frontlib_src}) |