1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

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=\ rofiinclude_HEADERS=\
include/mode.h\ include/mode.h\
include/mode-private.h\ include/mode-private.h\
include/helper.h include/helper.h\
include/rofi-types.h
## ##
# Rofi the program # Rofi the program

View file

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

View file

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

View file

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