author | unc0rr |
Wed, 21 Nov 2012 00:16:09 +0400 | |
changeset 8079 | 3f3dd3c9b89e |
parent 8078 | ea7541f77944 |
child 8080 | a6fc5396b3d6 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project_files/frontlib/CMakeLists.txt Wed Nov 21 00:16:09 2012 +0400 @@ -0,0 +1,17 @@ +find_package(SDL_net REQUIRED) + +set(CMAKE_C_FLAGS "-std=c99") + +file(GLOB frontlib_src + *.c *.h + base64/*.c base64/*.h + ipc/*.c ipc/*.h + md5/*.c md5/*.h + model/*.c model/*.h + net/*.c net/*.h + util/*.c util/*.h + ) + +include_directories(${SDLNET_INCLUDE_DIR}) + +add_library(frontlib STATIC ${frontlib_src})