开发者

VSTSDK and Visual Studio Express 2010

开发者 https://www.devze.com 2023-03-08 18:27 出处:网络
I am new to C++ and Visual Studio and have two questions: Where do I need to put the VSTSDK so that VS recognizes it and I can use it in my projects?

I am new to C++ and Visual Studio and have two questions:

Where do I need to put the VSTSDK so that VS recognizes it and I can use it in my projects?

Does anybody have some sample code for a VST hos开发者_开发知识库t?


It doesn't matter where you put the VST SDK, as long as you tell Visual Studio. In Visual Studio, you can add any library and #include path, and that's what you'll need from the SDK.


I would also recommend checking out the Audacity Source Code for a VST hosting example. There used to be a great vsthost.cpp example on the web, too, but I can't seem to find it. =/


There are some few examples like, vsthost, vstboard, audacity. vsthost is using asio only, the 2 others are using portaudio and portmidi.

vstboard is using Qt for gui, audacity uses wxwidget.

The problem is : what kind of host do you need (simple for one plug in ora complex one) Also, you should take a look at JUCE library which offers good features for all of that even if I would prefer the vstboard design (Qt + portaudio)

good luck

0

精彩评论

暂无评论...
验证码 换一张
取 消