What is the easiest or most useful target to build? #608
Replies: 2 comments 4 replies
-
To not use cmake at this moment is to ask for more difficulty, it's much recommendable to stick to it. Something else, Besides that, it looks pretty OK. Really we should edit the build system such that Jack is not enabled by default in Windows and OSX platforms, I'm going to do this shortly. |
Beta Was this translation helpful? Give feedback.
-
Yeah, I actually got it to build! thanks. looking at my generated "stuff", it certainly looks like lv2 was built (and some other stuff). w00t! Thinking about how to make a hacky "test command line app" - one way that is sitting in front of my nose is to clone the "sfizz_lv2" project to make a "sfizz_myhack" project, import it back into the big "sfizz.sln" and then hack it up until it makes my code instead of making lv2. I'm pretty sure that would eventually work, but maybe there is any easier way? |
Beta Was this translation helpful? Give feedback.
-
Looking for advice. I want to build some form of sfizz so that I can run it in a debugger and learn more about the architecture. My near term goal is to make a command-line windows app that I can “goof around with”.
I’m hoping/assuming that I can get cmake to make something for me, although I have also tried making my own Visual Studio project for it.
I am guessing that turning off various targets will increate my chance of success. So here is my current invocation of CMake. It seems like I’m close, but if you have any suggestions it would be appreciated.
cmake -DCMAKE_BUILD_TYPE=Debug -DSFIZZ_JACK=OFF -DSFIZZ_SHARED=OFF -DSFIZZ_RENDER=OFF ..
Beta Was this translation helpful? Give feedback.
All reactions