Install rofi-types.h and fix includes for plugins

This commit is contained in:
Dave Davenport 2017-10-03 20:50:38 +02:00
parent aeb669b175
commit 51d1ebf0ea
4 changed files with 5 additions and 3 deletions

View File

@ -32,7 +32,8 @@ rofiincludedir=${includedir}/rofi
rofiinclude_HEADERS=\
include/mode.h\
include/mode-private.h\
include/helper.h
include/helper.h\
include/rofi-types.h
##
# Rofi the program

View File

@ -29,7 +29,7 @@
#define ROFI_HELPER_H
#include <cairo.h>
#include <rofi-types.h>
#include "rofi-types.h"
/**
* @defgroup HELPERS Helpers

View File

@ -29,7 +29,7 @@
#define ROFI_MODE_H
#include <cairo.h>
#include <rofi-types.h>
#include "rofi-types.h"
/**
* @defgroup MODE Mode
*

View File

@ -119,6 +119,7 @@ install_headers([
'include/mode.h',
'include/mode-private.h',
'include/helper.h',
'include/rofi-types.h',
],
subdir: meson.project_name(),
)