view plugins/CMakeLists.txt @ 694:066aa6812934

Irccd: extreme cleanup in system.cpp
author David Demelier <markand@malikania.fr>
date Thu, 03 May 2018 21:45:10 +0200
parents e5d0f4289e04
children 4b5dba257d81
line wrap: on
line source

#
# CMakeLists.txt -- CMake build system for irccd
#
# 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(plugins)

set(
    IRCCD_PLUGINS
    ask
    auth
    hangman
    history
    joke
    logger
    plugin
    roulette
    tictactoe
    CACHE INTERNAL ""
)

foreach (plugin ${IRCCD_PLUGINS})
    irccd_define_plugin(
        NAME ${plugin}
        TYPE JS
        SCRIPT ${plugins_SOURCE_DIR}/${plugin}/${plugin}.js
        DOCS ${plugins_SOURCE_DIR}/${plugin}/${plugin}.md
    )
endforeach ()