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
Hi, trying to set up a project including this library with add_subdirectory(ext/yocto-gl) gives a few errors.
In file yocto_mesh.cpp, at line 178 and forward there are three calls to isnan, which is not declared in the scope. Setting using std::isnan in the previous line fix the issue.
In the "main" cmake file the usage of option to set the yocto variables, together with the version 3.12, causes any previously set value to be obscured. A version bump to 3.13 is enough to fix it.
It would also be nice to an additional option to exclude the building of the apps when using as lib only, to do something like:
I had to add a target_include_directories(yocto PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/..") in the cmake file in libs/yocto/ to be able to include any header from the library.
The text was updated successfully, but these errors were encountered:
Hi, trying to set up a project including this library with
add_subdirectory(ext/yocto-gl)
gives a few errors.using std::isnan
in the previous line fix the issue.target_include_directories(yocto PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/..") in
the cmake file in libs/yocto/ to be able to include any header from the library.The text was updated successfully, but these errors were encountered: