edi/src/lib/edi_builder.h

56 lines
743 B
C

#ifndef EDI_BUILDER_H_
# define EDI_BUILDER_H_
#include <Elementary.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @file
* @brief These routines are used for Edi building.
*/
/**
* @brief Main builder management
* @defgroup Builder
*
* @{
*
* Functions of build management and execution.
*
*/
/**
* Check if Edi can build the current project.
*
* @return Whether or not the current project can be built.
*
* @see edi_builder_build().
*
* @ingroup Builder
*/
EAPI Eina_Bool
edi_builder_can_build(void);
/**
* Run a build for the current project.
*
* @see edi_builder_can_build().
*
* @ingroup Builder
*/
EAPI void
edi_builder_build(void);
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif /* EDI_BUILDER_H_ */