view server/CMakeLists.txt @ 160:bbb506feb55f

Server: implement new stats for character, closes #761 @2h Each character no longer have a global level integer. Instead, separate each stat with a different level, factor and experience which define the current stat level, the desired partition of experience (from 100%) for this stat and the current experience respectively.
author David Demelier <markand@malikania.fr>
date Mon, 05 Mar 2018 21:04:14 +0100
parents 4b292c20124c
children 3e3040d085b5
line wrap: on
line source

#
# CMakeLists.txt -- CMake build system for malikania
#
# Copyright (c) 2013-2018 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

project(mlk-server)

malikania_define_executable(
    TARGET mlk-server
    SOURCES
        ${mlk-server_SOURCE_DIR}/main.cpp
    LIBRARIES
        libmlk-server
        libmlk-db-sqlite
)