mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
fix include paths
This commit is contained in:
parent
de566d441d
commit
df89b63368
9 changed files with 15 additions and 15 deletions
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include <villas/fpga/ip.hpp>
|
||||
|
||||
#include <villas/directed_graph.hpp>
|
||||
#include <villas/graph/directed.hpp>
|
||||
|
||||
namespace villas {
|
||||
namespace fpga {
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "memory.hpp"
|
||||
#include "fpga/ip.hpp"
|
||||
#include <villas/memory.hpp>
|
||||
#include <villas/fpga/ip.hpp>
|
||||
|
||||
namespace villas {
|
||||
namespace fpga {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <stdbool.h>
|
||||
#include <pthread.h>
|
||||
|
||||
#include "common.h"
|
||||
#include <villas/common.h>
|
||||
|
||||
#define LIST_CHUNKSIZE 16
|
||||
|
||||
|
|
|
@ -31,8 +31,8 @@ extern "C" {
|
|||
#include <time.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
#include "common.h"
|
||||
#include "log_config.h"
|
||||
#include <villas/common.h>
|
||||
#include <villas/log_config.h>
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define INDENT int __attribute__ ((__cleanup__(log_outdent), unused)) _old_indent = log_indent(1);
|
||||
|
|
|
@ -27,7 +27,7 @@ struct log;
|
|||
|
||||
#include <jansson.h>
|
||||
|
||||
#include "log.h"
|
||||
#include <villas/log.h>
|
||||
|
||||
/** Parse logging configuration. */
|
||||
int log_parse(struct log *l, json_t *cfg);
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <signal.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include "log.h"
|
||||
#include <villas/log.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*********************************************************************************/
|
||||
|
||||
#include "fpga/ips/bram.hpp"
|
||||
#include <villas/fpga/ips/bram.hpp>
|
||||
|
||||
namespace villas {
|
||||
namespace fpga {
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
#include "log_config.h"
|
||||
#include "plugin.h"
|
||||
|
||||
#include "fpga/ip.h"
|
||||
#include "fpga/card.h"
|
||||
#include "fpga/ips/dft.h"
|
||||
#include <villas/fpga/ip.h>
|
||||
#include <villas/fpga/card.h>
|
||||
#include <villas/fpga/ips/dft.h>
|
||||
|
||||
int dft_parse(struct fpga_ip *c, json_t *cfg)
|
||||
{
|
||||
|
|
|
@ -30,9 +30,9 @@
|
|||
#include "log_config.h"
|
||||
#include "plugin.h"
|
||||
|
||||
#include "fpga/ip.h"
|
||||
#include "fpga/card.h"
|
||||
#include "fpga/ips/model.h"
|
||||
#include <villas/fpga/ip.h>
|
||||
#include <villas/fpga/card.h>
|
||||
#include <villas/fpga/ips/model.h>
|
||||
|
||||
static int model_parameter_destroy(struct model_parameter *p)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue