refactor(core): make core_func.h local

This commit is contained in:
Masahiko AMANO 2023-01-14 17:13:52 +03:00
parent d421eadde4
commit 221e547db5
9 changed files with 19 additions and 17 deletions

View File

@ -8,23 +8,25 @@ set(CMAKE_C_STANDARD 99)
set(CORE_SRC set(CORE_SRC
include/core.h include/core.h
core/sasahyou.c tanabata/core/core_func.h
core/sappyou.c tanabata/core/sasahyou.c
core/shoppyou.c) tanabata/core/sappyou.c
tanabata/core/shoppyou.c)
set(TANABATA_SRC set(TANABATA_SRC
${CORE_SRC} ${CORE_SRC}
include/tanabata.h include/tanabata.h
lib/database.c tanabata/lib/database.c
lib/sasa.c tanabata/lib/sasa.c
lib/tanzaku.c tanabata/lib/tanzaku.c
lib/kazari.c) tanabata/lib/kazari.c)
set(CLI_SRC set(CLI_SRC
cli/cli.c) ${TANABATA_SRC}
tfm/cli/tfm-cli.c)
# Tanabata shared lib # Tanabata shared lib
add_library(tanabata SHARED ${TANABATA_SRC}) add_library(tanabata SHARED ${TANABATA_SRC})
# Tanabata CLI app # Tanabata CLI app
add_executable(tfm ${TANABATA_SRC} ${CLI_SRC}) add_executable(tfm ${CLI_SRC})

View File

@ -12,7 +12,7 @@ extern "C" {
#include <stdint.h> #include <stdint.h>
#endif #endif
#include "core.h" #include "../../include/core.h"
// ==================== SASAHYOU SECTION ==================== // // ==================== SASAHYOU SECTION ==================== //

View File

@ -2,7 +2,7 @@
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include "../../include/core_func.h" #include "core_func.h"
const Tanzaku HOLE_TANZAKU = {HOLE_ID}; const Tanzaku HOLE_TANZAKU = {HOLE_ID};

View File

@ -3,7 +3,7 @@
#include <time.h> #include <time.h>
#include <stdio.h> #include <stdio.h>
#include "../../include/core_func.h" #include "core_func.h"
const Sasa HOLE_SASA = {HOLE_ID}; const Sasa HOLE_SASA = {HOLE_ID};

View File

@ -2,7 +2,7 @@
#include <string.h> #include <string.h>
#include <time.h> #include <time.h>
#include "../../include/core_func.h" #include "core_func.h"
const Kazari HOLE_KAZARI = {HOLE_ID}; const Kazari HOLE_KAZARI = {HOLE_ID};

View File

@ -3,7 +3,7 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <time.h> #include <time.h>
#include "../../include/core_func.h" #include "../core/core_func.h"
#include "../../include/tanabata.h" #include "../../include/tanabata.h"
int tanabata_init(Tanabata *tanabata) { int tanabata_init(Tanabata *tanabata) {

View File

@ -1,6 +1,6 @@
#include <malloc.h> #include <malloc.h>
#include "../../include/core_func.h" #include "../core/core_func.h"
#include "../../include/tanabata.h" #include "../../include/tanabata.h"
int tanabata_kazari_add(Tanabata *tanabata, uint64_t sasa_id, uint64_t tanzaku_id) { int tanabata_kazari_add(Tanabata *tanabata, uint64_t sasa_id, uint64_t tanzaku_id) {

View File

@ -1,7 +1,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "../../include/core_func.h" #include "../core/core_func.h"
#include "../../include/tanabata.h" #include "../../include/tanabata.h"
int tanabata_sasa_add(Tanabata *tanabata, const char *path) { int tanabata_sasa_add(Tanabata *tanabata, const char *path) {

View File

@ -1,6 +1,6 @@
#include <string.h> #include <string.h>
#include "../../include/core_func.h" #include "../core/core_func.h"
#include "../../include/tanabata.h" #include "../../include/tanabata.h"
int tanabata_tanzaku_add(Tanabata *tanabata, const char *name, const char *description) { int tanabata_tanzaku_add(Tanabata *tanabata, const char *name, const char *description) {