mirror of
https://github.com/log-chipper/chipper.git
synced 2026-06-11 17:23:23 -05:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 04bb1c71fc | |||
| af8782c8b8 |
@@ -1,4 +1,4 @@
|
||||
package v1
|
||||
package chipper
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
/**
|
||||
* @file chipper_common.h
|
||||
* @brief Common definitions and small helpers
|
||||
* @author Darwin Cereska (darwin@darwincereska.dev)
|
||||
* @brief Standard options and small helpers
|
||||
*/
|
||||
|
||||
#ifndef CHIPPER_COMMON_H
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* @file chipper_config.h
|
||||
* @author Darwin Cereska (darwin@darwincereska.dev)
|
||||
* @brief
|
||||
*/
|
||||
@@ -1,5 +1,7 @@
|
||||
/**
|
||||
* @file chipper_daemon
|
||||
* @file chipper_daemon.h
|
||||
* @author Darwin Cereska (darwin@darwincereska.dev)
|
||||
* @brief Daemon functions
|
||||
*/
|
||||
|
||||
#ifndef CHIPPER_DAEMON_H
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
/**
|
||||
* @file chipper_log.h
|
||||
* @brief Low-level log output
|
||||
* @author Darwin Cereska (darwin@darwincereska.dev)
|
||||
* @brief Logging functions
|
||||
*/
|
||||
|
||||
#ifndef CHIPPER_LOG_H
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
/**
|
||||
* @file chipper_common.c
|
||||
* @author Darwin Cereska (darwin@darwincereska.dev)
|
||||
*/
|
||||
|
||||
#include "chipper_common.h"
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
/**
|
||||
* @file chipper_daemon.c
|
||||
* @author Darwin Cereska (darwin@darwincereska.dev)
|
||||
*/
|
||||
|
||||
#include "chipper_daemon.h"
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
/**
|
||||
* @file chipper_log.c
|
||||
* @author Darwin Cereska (darwin@darwincereska.dev)
|
||||
*/
|
||||
|
||||
#include "chipper_log.h"
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
/**
|
||||
* @file main.c
|
||||
* @author Darwin Cereska (darwin@darwincereska.dev)
|
||||
*/
|
||||
|
||||
#include "chipper_daemon.h"
|
||||
#include "chipper_common.h"
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
project('toml-c', 'c', version: '1.0.0')
|
||||
|
||||
toml_lib = static_library('toml',
|
||||
'toml.c',
|
||||
include_directories: include_directories('.')
|
||||
)
|
||||
|
||||
toml_dep = declare_dependency(
|
||||
include_directories: include_directories('.'),
|
||||
link_with: toml_lib
|
||||
)
|
||||
@@ -0,0 +1,7 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/arp242/toml-c.git
|
||||
revision = main
|
||||
depth = 1
|
||||
|
||||
[provide]
|
||||
toml-c = toml_dep
|
||||
Reference in New Issue
Block a user