Remove alternate tablet stub
This commit is contained in:
parent
6945e5f7f8
commit
42337e08cd
|
@ -2,15 +2,14 @@ dpf_add_plugin(yaw-tab-shepard
|
||||||
TARGETS vst2
|
TARGETS vst2
|
||||||
FILES_DSP
|
FILES_DSP
|
||||||
dsp.cpp
|
dsp.cpp
|
||||||
|
synth.cpp
|
||||||
FILES_UI
|
FILES_UI
|
||||||
wtutil.cpp
|
wtutil.cpp
|
||||||
wintab.cpp
|
wintab.cpp
|
||||||
rtstylus.cpp
|
|
||||||
ui.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)
|
target_compile_definitions(yaw-tab-shepard PUBLIC YAW_USE_WINTAB)
|
|
@ -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
|
|
Loading…
Reference in New Issue