Create FontWriter Support Lib project
This commit is contained in:
parent
086cad479b
commit
9197652d9b
|
@ -0,0 +1,3 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
void test();
|
|
@ -0,0 +1,36 @@
|
||||||
|
JABY_ENGINE_DIR = ../../..
|
||||||
|
include $(JABY_ENGINE_DIR)/mkfile/RebuildTarget.mk
|
||||||
|
|
||||||
|
ARTIFACT = libFontWriter
|
||||||
|
BUILD_DIR = bin
|
||||||
|
|
||||||
|
CCFLAGS += -I../../include -I$(JABY_ENGINE_DIR)/include
|
||||||
|
CCFLAGS += -save-temps=obj
|
||||||
|
|
||||||
|
include $(JABY_ENGINE_DIR)/mkfile/Wildcard.mk
|
||||||
|
SRCS = $(call rwildcard, src, c cpp s)
|
||||||
|
|
||||||
|
include $(JABY_ENGINE_DIR)/mkfile/Makefile
|
||||||
|
LIB_DIR = ../../lib/$(CONFIG_NAME)
|
||||||
|
|
||||||
|
LIB_OBJS = $(filter-out $(MAIN_BOOT_OBJ) $(OVERLAY_BOOT_OBJ),$(OBJS))
|
||||||
|
|
||||||
|
#$(info $$var is [${MAIN_BOOT_OBJ}])
|
||||||
|
#$(info $$var2 is [${LIB_OBJS}])
|
||||||
|
|
||||||
|
#Linking rule
|
||||||
|
$(TARGET).a: $(LIB_OBJS)
|
||||||
|
@mkdir -p $(dir $@)
|
||||||
|
$(AR) rcs $(TARGET).a $(LIB_OBJS)
|
||||||
|
|
||||||
|
#Copy rules
|
||||||
|
$(LIB_DIR)/$(ARTIFACT).a: $(TARGET).a
|
||||||
|
@mkdir -p $(LIB_DIR)
|
||||||
|
cp $(TARGET).a $(LIB_DIR)/$(ARTIFACT).a
|
||||||
|
|
||||||
|
#Rules section for default compilation and linking
|
||||||
|
all: $(LIB_DIR)/$(ARTIFACT).a
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -fr $(OUTPUT_DIR)
|
||||||
|
rm -fr $(LIB_DIR)/$(ARTIFACT).a
|
|
@ -0,0 +1,6 @@
|
||||||
|
#include <FontWriter/FontWriter.hpp>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
void test() {
|
||||||
|
printf("Hello Planschi c:\n");
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
FontWriter: always
|
||||||
|
$(MAKE) -C FontWriter
|
||||||
|
|
||||||
|
all: FontWriter
|
||||||
|
|
||||||
|
always: ;
|
|
@ -0,0 +1,72 @@
|
||||||
|
{
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"name": "Support",
|
||||||
|
"path": "."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Support Include",
|
||||||
|
"path": "../include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Support Library",
|
||||||
|
"path": "../lib"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"tasks": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "make",
|
||||||
|
"type": "shell",
|
||||||
|
"windows": {
|
||||||
|
"command": "wsl make ${input:target} BUILD_PROFILE=${input:build cfg}",
|
||||||
|
},
|
||||||
|
"linux": {
|
||||||
|
"command": "make ${input:target} BUILD_PROFILE=${input:build cfg}",
|
||||||
|
},
|
||||||
|
"group": "build"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"inputs": [
|
||||||
|
{
|
||||||
|
"id": "build cfg",
|
||||||
|
"type": "pickString",
|
||||||
|
"options": ["debug", "release"],
|
||||||
|
"default": "release",
|
||||||
|
"description": "build configuration"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "target",
|
||||||
|
"type": "pickString",
|
||||||
|
"options": ["all", "clean", "rebuild"],
|
||||||
|
"default": "all",
|
||||||
|
"description": "build target",
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"cmake.configureOnOpen": false,
|
||||||
|
"C_Cpp.default.includePath": [
|
||||||
|
"../include",
|
||||||
|
"../../include"
|
||||||
|
],
|
||||||
|
"C_Cpp.default.compilerPath": "",
|
||||||
|
"C_Cpp.default.cStandard": "c17",
|
||||||
|
"C_Cpp.default.cppStandard": "c++20",
|
||||||
|
"C_Cpp.default.intelliSenseMode": "linux-gcc-x86",
|
||||||
|
"C_Cpp.default.compilerArgs": [
|
||||||
|
],
|
||||||
|
"C_Cpp.default.defines": [
|
||||||
|
"JABYENGINE_PAL",
|
||||||
|
"__friends=public"
|
||||||
|
],
|
||||||
|
"files.exclude": {
|
||||||
|
"**/*.o": true,
|
||||||
|
"**/*.dep": true
|
||||||
|
},
|
||||||
|
"files.associations": {
|
||||||
|
"stdio.h": "c"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue