jpcima / ADLplug

FM Chip Synthesizer — OPL & OPN — VST/LV2/Standalone
Boost Software License 1.0
435 stars 22 forks source link

Debian : Initial « cmake -DCMAKE_BUILD_TYPE=Release ... » just fails #65

Closed zebulon-1st closed 4 years ago

zebulon-1st commented 4 years ago

Hello,

I'm french, but I will use english anyway for other people. Use DeepL translator, it works fine and can really help you, with just a few knowledge of English.

I'm not used at all with cmake. I'm an old school coder rather more used with Makefiles, gcc or clang.


The "clone" passed off without a hitch :

$ git clone --recursive https://github.com/jpcima/ADLplug.git
$ mkdir ADLplug/build

Then, I wanted to compile a VST2 module in order to try it in Jeskola Buzz (which runs on Windows). But I always get the same error, even if I leave only the minimal number of options (-DCMAKE_BUILD_TYPE=Release) :

$ cd ADLplug/build
$ cmake -DCMAKE_BUILD_TYPE=Release -DADLplug_VST2=ON -DADLplug_Standalone=ON -DADLplug_Jack=OFF -DADLplug_CHIP=OPL3 -DADLplug_PCH=OFF -DADLplug_ASSERTIONS=ON
CMake Error: The source directory "ADLplug/build" does not appear to contain CMakeLists.txt.

What did I miss ?

jpcima commented 4 years ago

Hello @zebulon-1st It needs .. at the end of the cmake line. A priori the rest looks OK.

zebulon-1st commented 4 years ago

It needs .. at the end of the cmake line.

Oh. Thx. ;)


Indeed, it's better with this .. :)