Library name: nanogui
New version number:
Other information that may be useful (release notes, etc...)
https://github.com/mitsuba-renderer/nanogui
The current version doesn't seem to install the headers anywhere, so it doesn't actually build.
CMakeLists.txt
cmake_minimum_required(VERSION 3.0)
cmake_policy(SET CMP0048 NEW)
project(pp VERSION 0.0.0 LANGUAGES CXX)
set(src src/main.cpp)
find_package(nanovg CONFIG REQUIRED)
add_executable(${PROJECT_NAME} ${src})
target_link_libraries(${PROJECT_NAME} PRIVATE nanovg::nanovg)
src/main.cpp
https://raw.githubusercontent.com/mitsuba-renderer/nanogui/5555031/src/example2.cpp
shell
$ [path]/vcpkg install nanogui
$ mkdir build && cd $_
$ cmake .. -DCMAKE_TOOLCHAIN_FILE=[path]/vcpkg/scripts/buildsystems/vcpkg.cmake
$ cmake --build .
fatal error: 'nanogui/nanogui.h' file not found
#include <nanogui/nanogui.h>
^~~~~~~~~~~~~~~~~~~
PS: Working my way through all the UI frameworks vcpkg supports [grep -F 'ui'], so far only sfgui works on its example source without error
Library name: nanogui
New version number:
Other information that may be useful (release notes, etc...)
https://github.com/mitsuba-renderer/nanogui
The current version doesn't seem to install the headers anywhere, so it doesn't actually build.
CMakeLists.txtsrc/main.cpphttps://raw.githubusercontent.com/mitsuba-renderer/nanogui/5555031/src/example2.cpp
shellPS: Working my way through all the UI frameworks vcpkg supports [
grep -F 'ui'], so far onlysfguiworks on its example source without error