project_files/frontlib/CMakeLists.txt
author antonc27 <antonc27@mail.ru>
Thu, 13 Aug 2015 01:33:40 +0200
branchios-revival
changeset 11111 6cdfd5fc08de
parent 8084 e723e95c11f1
child 8100 0e6fadf81a2c
permissions -rw-r--r--
- Using come for internal memory management Note: This fixed crash with ansisitring deletion while loading 'en.txt' locale P.S. guys from #fpc suggested what this is just a spoof, not a real fix. maybe need more carefully mange memory here

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