project_files/frontlib/CMakeLists.txt
author koda
Tue, 20 Nov 2012 21:55:51 +0100
changeset 8080 a6fc5396b3d6
parent 8079 3f3dd3c9b89e
child 8081 5a7ff368cf01
permissions -rw-r--r--
fix physfs on osx, now all platforms should be happy

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})