move files

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@305 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-13 07:00:00 +00:00
parent 3ad7105907
commit 781a4647d8
12 changed files with 10 additions and 10 deletions

4
.gitattributes vendored
View File

@@ -1,5 +1,5 @@
/src/external/stb_ds.h linguist-generated
/src/external/stb_image.h linguist-generated
/external/stb_ds.h linguist-generated
/external/stb_image.h linguist-generated
/external/libjpeg/include/*.h linguist-generated
/external/libjpeg/src/*.c linguist-generated
/external/libjpeg/src/*.h linguist-generated

View File

@@ -27,7 +27,7 @@ L_LDFLAGS = $(LDFLAGS)
L_LIBS = $(LIBS)
L_OBJS = src/core.o src/default.o src/draw.o src/lowlevel.o src/font.o src/boldfont.o src/error.o src/unicode.o src/color.o src/messagebox.o
L_OBJS += src/external/ds.o src/external/image.o
L_OBJS += external/ds.o external/image.o
L_OBJS += src/widget/window.o src/widget/button.o src/widget/frame.o src/widget/menu.o src/widget/submenu.o src/widget/image.o src/widget/scrollbar.o src/widget/checkbox.o src/widget/label.o src/widget/entry.o src/widget/numberentry.o src/widget/viewport.o
L_OBJS += src/cursor/default.o src/cursor/cross.o src/cursor/text.o
L_OBJS += src/icon/question.o src/icon/warning.o src/icon/note.o src/icon/info.o src/icon/news.o src/icon/error.o

View File

View File

View File

View File

@@ -1,7 +1,7 @@
/* $Id$ */
#include <Mw/Milsko.h>
#include "external/stb_ds.h"
#include "../external/stb_ds.h"
static void lldrawhandler(MwLL handle, void* data) {
MwWidget h = (MwWidget)handle->user;

View File

@@ -2,14 +2,14 @@
#include <Mw/Milsko.h>
#ifdef USE_STB_IMAGE
#include "external/stb_image.h"
#include "../external/stb_image.h"
#else
#include <png.h>
#include <jpeglib.h>
#include <jerror.h>
#endif
#include "external/stb_ds.h"
#include "../external/stb_ds.h"
#define FontWidth 7
#define FontHeight 14

View File

@@ -1,7 +1,7 @@
/* $Id$ */
#include <Mw/Milsko.h>
#include "external/stb_ds.h"
#include "../external/stb_ds.h"
typedef struct msgbox {
int key;

View File

@@ -1,7 +1,7 @@
/* $Id$ */
#include <Mw/Milsko.h>
#include "../external/stb_ds.h"
#include "../../external/stb_ds.h"
static void set_xywh(MwWidget handle) {
int height = 0;

View File

@@ -1,7 +1,7 @@
/* $Id$ */
#include <Mw/Milsko.h>
#include "../external/stb_ds.h"
#include "../../external/stb_ds.h"
static int create(MwWidget handle) {
MwLLShow(handle->lowlevel, 0);

View File

@@ -31,7 +31,7 @@
#include <stdbool.h>
#include "../external/stb_ds.h"
#include "../../external/stb_ds.h"
MwVulkanConfig vulkan_config = {
.api_version = VK_API_VERSION_1_0,