changeset 8079 | 3f3dd3c9b89e |
child 8081 | 5a7ff368cf01 |
8078:ea7541f77944 | 8079:3f3dd3c9b89e |
---|---|
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}) |