project_files/frontlib/CMakeLists.txt
author Wuzzy <Wuzzy2@mail.ru>
Sat, 02 Nov 2019 13:01:28 +0100
changeset 15501 5a30396f8fb2
parent 8084 e723e95c11f1
child 8100 0e6fadf81a2c
permissions -rw-r--r--
ClimbHome: Change misleading Seed assignment to nil value This was "Seed = ClimbHome", but ClimbHome was a nil value. This code still worked as the engine interpreted the nil value as empty string. But it can be very misleading. This changeset makes the Seed assignment more explicit by assigning the empty string directly. The compability has been tested.
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})