You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a small issue and I was able to resolve it eventually - but it did seem to take some time to figure out.
I've just moved over from Windows to Linux (Ubuntu) and had a bit of trouble getting the CMake scripts to work. (It's not a tool I'm very familiar with)
When I ran cmake --preset default . I would get the output
I think this works because it adds a CMake cache entry CMAKE_TOOLCHAIN_FILE:FILEPATH="/cmake/sdk.cmake". Again, I'm not sure if it's 'supposed' to rely on this, I know next to nothing about CMake.
Weirdly this isn't strictly required on Windows. On Windows I have build scripts that delete the /build dir every time, but this caused issues on Linux.
tl;dr: the Installation.md may be missing a step
The text was updated successfully, but these errors were encountered:
This is a small issue and I was able to resolve it eventually - but it did seem to take some time to figure out.
I've just moved over from Windows to Linux (Ubuntu) and had a bit of trouble getting the CMake scripts to work. (It's not a tool I'm very familiar with)
When I ran
cmake --preset default .
I would get the outputThis was surprising because the library path environment variable was set up correctly:
Turns out (?) I needed to run an extra step, which I actually found in the instructions for building the examples:
I think this works because it adds a CMake cache entry
CMAKE_TOOLCHAIN_FILE:FILEPATH="/cmake/sdk.cmake"
. Again, I'm not sure if it's 'supposed' to rely on this, I know next to nothing about CMake.Weirdly this isn't strictly required on Windows. On Windows I have build scripts that delete the /build dir every time, but this caused issues on Linux.
tl;dr: the Installation.md may be missing a step
The text was updated successfully, but these errors were encountered: