From c12382994a16046947022cd189098e426c3838fb Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Mon, 30 Aug 2021 22:06:12 -0300 Subject: [PATCH] Updating MSVC build. --- client/src/session/remote/private.h | 1 + win/Makefile.msc | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/client/src/session/remote/private.h b/client/src/session/remote/private.h index 2a20827..e07da77 100644 --- a/client/src/session/remote/private.h +++ b/client/src/session/remote/private.h @@ -167,6 +167,7 @@ unsigned short setCursor(unsigned short row, unsigned short col) override; unsigned short getCursorAddress() override; Session::Cursor getCursorPosition() override; + void setProperty(const char *name, const int value) override; void setProperty(const char *name, const unsigned int value) override; void setProperty(const char *name, const bool value) override; diff --git a/win/Makefile.msc b/win/Makefile.msc index d0d1081..e47868a 100644 --- a/win/Makefile.msc +++ b/win/Makefile.msc @@ -34,6 +34,7 @@ OBJ_FILES= \ client\src\core\events.obj \ client\src\core\session.obj \ client\src\core\windows\attribute.obj \ + client\src\core\windows\dynamic\init.obj \ client\src\core\windows\pop.obj \ client\src\core\windows\push.obj \ client\src\core\windows\request.obj \ @@ -48,13 +49,12 @@ OBJ_FILES= \ client\src\host\string.obj \ client\src\session\action.obj \ client\src\session\get.obj \ - client\src\session\set.obj \ - client\src\session\tools.obj \ client\src\session\local\actions.obj \ client\src\session\local\attribute.obj \ client\src\session\local\events.obj \ client\src\session\local\get.obj \ client\src\session\local\init.obj \ + client\src\session\local\properties.obj \ client\src\session\local\set.obj \ client\src\session\local\wait.obj \ client\src\session\remote\actions.obj \ @@ -65,7 +65,9 @@ OBJ_FILES= \ client\src\session\remote\tools.obj \ client\src\session\remote\wait.obj \ client\src\session\remote\windows\request.obj \ - client\src\session\remote\windows\session.obj + client\src\session\remote\windows\session.obj \ + client\src\session\set.obj \ + client\src\session\tools.obj .cc.obj: @echo Compiling... -- libgit2 0.21.2