project_files/frontlib/CMakeLists.txt
author sheepluva
Mon, 25 Nov 2013 10:12:18 +0100
changeset 9717 b8b7ef99a084
parent 8084 e723e95c11f1
child 8100 0e6fadf81a2c
permissions -rw-r--r--
don't let (am)Nothing change allowed aiming angles. e.g. fixes aiming problems when on last rope. please test for possible side effects (flying saucer and whatnot)

find_package(SDL REQUIRED)
find_package(SDL_net REQUIRED)
find_package(ZLIB REQUIRED)

add_definitions("-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(${SDL_INCLUDE_DIR})
include_directories(${SDLNET_INCLUDE_DIR})
include_directories(${ZLIB_INCLUDE_DIR})

add_library(frontlib STATIC ${frontlib_src})