# HG changeset patch # User unc0rr # Date 1353442569 -14400 # Node ID 3f3dd3c9b89e98484b3d5405d8715640904d33d2 # Parent ea7541f779440d7b3bc6480c423d6a3048d0bf02 Oops diff -r ea7541f77944 -r 3f3dd3c9b89e project_files/frontlib/CMakeLists.txt --- /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})