$ cookiecutter https://github.com/supercollider/cookiecutter-supercollider-plugin
You've downloaded /home/dlm/.cookiecutters/cookiecutter-supercollider-plugin before. Is it okay to delete and re-download it? [yes]: y
full_path_to_supercollider_source [/home/wendy/supercollider (if you haven't cloned it yet, do that first! Press Ctrl-C to exit this script)]: /home/dlm/share/supercollider/
project_name [Simple Gain]: Analog Curve
... snip
Your project was successfully created!
Then I made a simple early version of the inner loop, and:
$ mkdir build
$ cd build
$ cmake .. -DCMAKE_BUILD_TYPE=ReleaseWithDebInfo
CMake Warning at cmake_modules/SuperColliderServerPlugin.cmake:10 (message):
No SC_PATH specified, defaulting to '../supercollider'.
Call Stack (most recent call first):
CMakeLists.txt:29 (sc_check_sc_path)
CMake Error at cmake_modules/SuperColliderServerPlugin.cmake:19 (message):
Could not find SuperCollider3 headers at
'/home/dlm/share/tools/supercollider'.
Please set SC_PATH to the root folder of the SuperCollider project relative
to the folder containing this CMakeLists.txt file
Call Stack (most recent call first):
CMakeLists.txt:29 (sc_check_sc_path)
-- Configuring incomplete, errors occurred!
I will, of course, set the path manually... but... what was the point of specifying the path during the questionnaire? It's right there: full_path_to_supercollider_source: /home/dlm/share/supercollider/ -- I did provide the information to the script, but then the script seems not to have done the right thing with it.
Then I made a simple early version of the inner loop, and:
I will, of course, set the path manually... but... what was the point of specifying the path during the questionnaire? It's right there:
full_path_to_supercollider_source: /home/dlm/share/supercollider/-- I did provide the information to the script, but then the script seems not to have done the right thing with it.