and ran cmake -G Xcode -S . -B build -DCMAKE_INSTALL_PREFIX=/Users/sam/nappgui
This FAILED with the following error:
I was mystified, but had a hunch that it didn't properly find my files.
And... I changed my source directory from nappgui projectsto nappgui_projects. The result was the following:
In other words, either CMake or nrc does not allow spaces in directory names!
I wanted to added some resource images to my application, and proceeded as the documentation says:
.../res/
, giving.../res/res_images
CMakeLists.txt
file in the main project directory tocmake -G Xcode -S . -B build -DCMAKE_INSTALL_PREFIX=/Users/sam/nappgui
This FAILED with the following error:
I was mystified, but had a hunch that it didn't properly find my files. And... I changed my source directory from
nappgui projects
tonappgui_projects
. The result was the following:In other words, either
CMake
ornrc
does not allow spaces in directory names!Please ascertain which, and correct.