From d5cac76ff56c3591c8613db1b8d4207fa1f0b3cb Mon Sep 17 00:00:00 2001 From: lexborisov Date: Mon, 20 Mar 2017 23:40:55 +0300 Subject: [PATCH] Fixed build examples and tests for Windows --- api_breaking_changes.md | 1 - examples/Makefile | 1 + test/Makefile | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/api_breaking_changes.md b/api_breaking_changes.md index 6e7036a..f807f0c 100644 --- a/api_breaking_changes.md +++ b/api_breaking_changes.md @@ -5,7 +5,6 @@ * If you use encoding enum, like ```MyHTML_ENCODING_UTF8```, now it ```MyENCODING_UTF_8```, i.e ```MyHTML_ENCODING_* => MyENCODING_*``` * Functions migrated to MyCORE from MyHTML: ```myhtml_incoming_buffer_*``` => ```mycore_incoming_buffer_*```, ```myhtml_string*``` => ```mycore_string*```, ```myhtml_utils*``` => ```mycore_utils*``` - 0.0.1 => 0.0.4 =========== Removed all depending on the Tree. Now you can get a tree of nodes ```myhtml_node_tree``` diff --git a/examples/Makefile b/examples/Makefile index 7730ed6..d919f52 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -15,6 +15,7 @@ CC ?= gcc # other Makefile #*************** BINARY_PATH_RELATIVE := .. +MODEST_SOURCE := $(BINARY_PATH_RELATIVE)/source include $(BINARY_PATH_RELATIVE)/Makefile.bin.cfg BINARY_TO_DIR := $(BINARY_PATH_RELATIVE)/$(BINARY_DIR_BASE) diff --git a/test/Makefile b/test/Makefile index 5bbb11a..e1a8bf1 100644 --- a/test/Makefile +++ b/test/Makefile @@ -15,6 +15,7 @@ CC ?= gcc # other Makefile #*************** BINARY_PATH_RELATIVE := .. +MODEST_SOURCE := $(BINARY_PATH_RELATIVE)/source include $(BINARY_PATH_RELATIVE)/Makefile.bin.cfg BINARY_TO_DIR := $(BINARY_PATH_RELATIVE)/$(TEST_DIR_BASE)