project_files/frontlib/CMakeLists.txt
author S.D.
Tue, 27 Sep 2022 14:59:03 +0300
changeset 15878 fc3cb23fd26f
parent 8084 e723e95c11f1
child 8100 0e6fadf81a2c
permissions -rw-r--r--
Allow to see rooms of incompatible versions in the lobby For the new clients the room version is shown in a separate column. There is also a hack for previous versions clients: the room vesion specifier is prepended to the room names for rooms of incompatible versions, and the server shows 'incompatible version' error if the client tries to join them.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8081
5a7ff368cf01 frontlib paths
koda
parents: 8079
diff changeset
     1
find_package(SDL REQUIRED)
8079
unc0rr
parents:
diff changeset
     2
find_package(SDL_net REQUIRED)
8084
e723e95c11f1 Some fixes to build process
unc0rr
parents: 8081
diff changeset
     3
find_package(ZLIB REQUIRED)
8079
unc0rr
parents:
diff changeset
     4
8081
5a7ff368cf01 frontlib paths
koda
parents: 8079
diff changeset
     5
add_definitions("-std=c99")
8079
unc0rr
parents:
diff changeset
     6
unc0rr
parents:
diff changeset
     7
file(GLOB frontlib_src
unc0rr
parents:
diff changeset
     8
        *.c *.h
unc0rr
parents:
diff changeset
     9
        base64/*.c base64/*.h
unc0rr
parents:
diff changeset
    10
        ipc/*.c ipc/*.h
unc0rr
parents:
diff changeset
    11
        md5/*.c md5/*.h
unc0rr
parents:
diff changeset
    12
        model/*.c model/*.h
unc0rr
parents:
diff changeset
    13
        net/*.c net/*.h
unc0rr
parents:
diff changeset
    14
        util/*.c util/*.h
unc0rr
parents:
diff changeset
    15
    )
unc0rr
parents:
diff changeset
    16
8081
5a7ff368cf01 frontlib paths
koda
parents: 8079
diff changeset
    17
include_directories(${SDL_INCLUDE_DIR})
8079
unc0rr
parents:
diff changeset
    18
include_directories(${SDLNET_INCLUDE_DIR})
8084
e723e95c11f1 Some fixes to build process
unc0rr
parents: 8081
diff changeset
    19
include_directories(${ZLIB_INCLUDE_DIR})
8079
unc0rr
parents:
diff changeset
    20
unc0rr
parents:
diff changeset
    21
add_library(frontlib STATIC ${frontlib_src})