How to create custom nodes (1.1.1)?

Hello,

I have followed the steps described in Vuo: Developing a Node Class. I didn’t modify the stateless example - just copied it to be sure i’ve done nothing wrong within the code itself. What am I doing wrong? This is the complete compile output from the Qt Creator:

17:33:29: Running steps for project example.stateless…

17:33:29: Starting: “/Applications/Qt/5.4/clang_64/bin/qmake” ‘/Users/scrat/Development/2015/Vuo/vuo-1.1.1-sdk/example/node/stateless copy/example.stateless.pro’ -r -spec macx-clang CONFIG+=debug CONFIG+=x86_64

Info: creating cache file /Users/scrat/Development/2015/Vuo/vuo-1.1.1-sdk/example/node/build-example.stateless-Desktop_Qt_5_4_1_clang_64bit-Debug/.qmake.cache

Info: creating stash file /Users/scrat/Development/2015/Vuo/vuo-1.1.1-sdk/example/node/build-example.stateless-Desktop_Qt_5_4_1_clang_64bit-Debug/.qmake.stash

17:33:30: The process “/Applications/Qt/5.4/clang_64/bin/qmake” exited normally.

17:33:30: Starting: “/usr/bin/make”

…/…/…/framework/vuo-compile --output example.stateless.vuoize.vuonode …/stateless\ copy/example.stateless.vuoize.c && mkdir -p ~/Library/Application\ Support/Vuo/Modules && cp example.stateless.vuoize.vuonode ~/Library/Application\ Support/Vuo/Modules

In file included from …/stateless copy/example.stateless.vuoize.c:10:

In file included from /Users/scrat/Development/2015/Vuo/vuo-1.1.1-sdk/framework/./Vuo.framework/Headers/node.h:14:

In file included from /Users/scrat/Development/2015/Vuo/vuo-1.1.1-sdk/framework/./Vuo.framework/Headers/module.h:22:

/Users/scrat/Development/2015/Vuo/vuo-1.1.1-sdk/framework/./Vuo.framework/Headers/VuoLog.h:177:11: fatal error: ‘CoreFoundation/CoreFoundation.h’ file not found
#include <CoreFoundation/CoreFoundation.h>
^

1 error generated.

pid=11294 t= 0.3468s VuoCompiler.cc:906 compileModule() Error: Couldn’t compile ‘…/stateless copy/example.stateless.vuoize.c’ to LLVM bitcode.

cp: example.stateless.vuoize.vuonode: No such file or directory

make: *** [example.stateless.vuoize.vuonode] Error 1

17:33:30: The process “/usr/bin/make” exited with code 2.

Error while building/deploying project example.stateless (kit: Desktop Qt 5.4.1 clang 64bit)
When executing step “Make”

17:33:30: Elapsed time: 00:01.

Scrat

The “CoreFoundation.h not found” error can happen if you haven’t installed Xcode Command Line Tools. You can install it by typing into Terminal:

xcode-select --install

Then verify with:

xcode-select -p

Thank you so much!