mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 19:34:50 +00:00
18 lines
819 B
C
18 lines
819 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_FUNCTIONS_KERNEL_BUILD_TARGET_H
|
|
#define MUON_FUNCTIONS_KERNEL_BUILD_TARGET_H
|
|
#include "functions/common.h"
|
|
|
|
bool func_both_libraries(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
bool func_build_target(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
bool func_executable(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
bool func_library(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
bool func_shared_library(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
bool func_static_library(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
bool func_shared_module(struct workspace *wk, obj _, uint32_t args_node, obj *res);
|
|
#endif
|