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
I download all files of the project (nanogui).But I can't find the file "nanogui_resources.h",and the error comes from the file "theme.cpp : #include <nanogui_resources.h>". How do you solve this problem? Thank you!
The text was updated successfully, but these errors were encountered:
"nanogui_resources.h" file is automatically generated when you run CMake.
You should run CMake before build this library.
(See Compiling section of this github main page.)
You can see the script in CMakeLists.txt file.
# Create command line for running bin2c cmake script
set(bin2c_cmdline
-DOUTPUT_C=nanogui_resources.cpp
-DOUTPUT_H=nanogui_resources.h
"-DINPUT_FILES=${resources_string}"
-P "${CMAKE_CURRENT_SOURCE_DIR}/resources/bin2c.cmake")
I download all files of the project (nanogui).But I can't find the file "nanogui_resources.h",and the error comes from the file "theme.cpp : #include <nanogui_resources.h>". How do you solve this problem? Thank you!
The text was updated successfully, but these errors were encountered: