blob: ab861bd177cdbf3f098325dac6c2261fce939375 [file] [log] [blame]
Radek Krejci968d7552021-03-26 20:33:51 +01001/**
2 * @file config.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Various variables provided by cmake and compile time options.
5 *
6 * Copyright (c) 2021 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_CONFIG_H_
16#define LY_CONFIG_H_
17
18/*
19 * Plugins
20 */
21#define LYPLG_SUFFIX "@CMAKE_SHARED_MODULE_SUFFIX@"
22#define LYPLG_SUFFIX_LEN (sizeof LYPLG_SUFFIX - 1)
23#define LYPLG_TYPE_DIR "@PLUGINS_DIR_EXTENSIONS@"
24#define LYPLG_EXT_DIR "@PLUGINS_DIR_TYPES@"
25
26#endif /* LY_CONFIG_H_ */