ConBoard example application added

This commit is contained in:
2021-01-06 07:25:52 +03:00
parent 5343d74f97
commit 8759ae0881
3 changed files with 74 additions and 3 deletions

View File

@@ -9,9 +9,9 @@ MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
DCC = $(ROOT)\bin\dcc32.exe $**
BRCC = $(ROOT)\bin\brcc32.exe $**
#------------------------------------------------------------------------------
PROJECTS = CharMap.exe ColorButtons.exe ConsoleColors.exe DateTime.exe DrawImage.exe DrawImageEx.exe DrawText.exe \
Echo.exe GetCurrentDirectory.exe GetPixel.exe GetPointOwner.exe Hello.exe HelloGUI.exe LoadFile.exe ReadFolder.exe \
Screenshot.exe SetCursor.exe SetPixel.exe SetWindowPos.exe
PROJECTS = CharMap.exe ColorButtons.exe ConBoard.exe ConsoleColors.exe DateTime.exe DrawImage.exe DrawImageEx.exe \
DrawText.exe Echo.exe GetCurrentDirectory.exe GetPixel.exe GetPointOwner.exe Hello.exe HelloGUI.exe LoadFile.exe \
ReadFolder.exe Screenshot.exe SetCursor.exe SetPixel.exe SetWindowPos.exe
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
@@ -22,6 +22,9 @@ CharMap.exe: Console\CharMap\CharMap.dpr
ColorButtons.exe: GUI\ColorButtons\ColorButtons.dpr
$(DCC)
ConBoard.exe: Console\ConBoard\ConBoard.dpr
$(DCC)
ConsoleColors.exe: Console\ConsoleColors\ConsoleColors.dpr
$(DCC)