From 42337e08cd3c2ae177fcf332ce90e92001e7aa6b Mon Sep 17 00:00:00 2001 From: yaw-man Date: Fri, 19 Aug 2022 14:41:51 -0300 Subject: [PATCH] Remove alternate tablet stub --- src/yaw-shepard/CMakeLists.txt | 7 +++---- src/yaw-shepard/rtstylus.cpp | 23 ----------------------- 2 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 src/yaw-shepard/rtstylus.cpp diff --git a/src/yaw-shepard/CMakeLists.txt b/src/yaw-shepard/CMakeLists.txt index 957f03c..bb86b7f 100644 --- a/src/yaw-shepard/CMakeLists.txt +++ b/src/yaw-shepard/CMakeLists.txt @@ -2,15 +2,14 @@ dpf_add_plugin(yaw-tab-shepard TARGETS vst2 FILES_DSP dsp.cpp + synth.cpp FILES_UI wtutil.cpp wintab.cpp - rtstylus.cpp ui.cpp) -target_include_directories(yaw-tab-shepard PUBLIC +target_include_directories(yaw-tab-shepard PUBLIC "." - "../../lib/wintab" -) + "../../lib/wintab") target_compile_definitions(yaw-tab-shepard PUBLIC YAW_USE_WINTAB) \ No newline at end of file diff --git a/src/yaw-shepard/rtstylus.cpp b/src/yaw-shepard/rtstylus.cpp deleted file mode 100644 index b093fbd..0000000 --- a/src/yaw-shepard/rtstylus.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#ifdef YAW_USE_OTD -// text_write.cpp -// compile with: /clr -using namespace System; -using namespace System::IO; - -int func() -{ - String^ fileName = "textfile.txt"; - - StreamWriter^ sw = gcnew StreamWriter(fileName); - sw->WriteLine("A text file is born!"); - sw->Write("You can use WriteLine"); - sw->WriteLine("...or just Write"); - sw->WriteLine("and do {0} output too.", "formatted"); - sw->WriteLine("You can also send non-text objects:"); - sw->WriteLine(DateTime::Now); - sw->Close(); - Console::WriteLine("a new file ('{0}') has been written", fileName); - - return 0; -} -#endif \ No newline at end of file