Moved JabyEngine Code to a Library folder

This commit is contained in:
2022-07-10 11:36:33 +02:00
parent 977d853768
commit 3dec561262
10 changed files with 13 additions and 13 deletions

19
Library/Code/Wrapper.mk Normal file
View File

@@ -0,0 +1,19 @@
#this makefile translates from NUGGET make to JabyMake
ARTIFACT = JabyEngine
BUILD_DIR = bin
ifeq ($(BUILD),Release)
BUILD_PROFILE := release
else
BUILD_PROFILE := debug
endif
CCFLAGS_all := $(CPPFLAGS)
LIBS := $(LDFLAGS)
undefine CPPFLAGS
undefine LDFLAGS
undefine BUILD
#include the real make file
include ../Makefile