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
(base) C:\immersive-ngp\immersive-ngp\instant-ngp>cmake . -B build
-- Building for: NMake Makefiles
CMake Error at CMakeLists.txt:11 (project):
Running
'nmake' '-?'
failed with:
The system cannot find the file specified
CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CUDA_COMPILER not set, after EnableLanguage
-- Configuring incomplete, errors occurred!
The text was updated successfully, but these errors were encountered:
before the project I added the compilers and those "not set" errors disappeared
set( CMAKE_CXX_COMPILER "C:/MinGW/bin/g++.exe" )
set( CMAKE_C_COMPILER "cl.exe" )
set( CMAKE_CUDA_COMPILER "nvcc.exe" )
then you must add the place of c compiler to the path do that cuda compiler gets the place too like so
set Path=%Path%;C:\MinGW\bin;C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.34.31933\bin\Hostx64\x64
after that i compiled it with the instructions given
(base) C:\immersive-ngp\immersive-ngp\instant-ngp>cmake . -B build
-- Building for: NMake Makefiles
CMake Error at CMakeLists.txt:11 (project):
Running
'nmake' '-?'
failed with:
The system cannot find the file specified
CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CUDA_COMPILER not set, after EnableLanguage
-- Configuring incomplete, errors occurred!
The text was updated successfully, but these errors were encountered: