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:
parent
aeb669b175
commit
51d1ebf0ea
4 changed files with 5 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
*
|
*
|
||||||
|
|
|
@ -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(),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue