hi,
the project https://github.com/project-chip/connectedhomeip/tree/master/examples/lock-app/nrfconnect

if this project can't build in windows platform?
thanks!

Hi,
Based on your error message the CHIP_ROOT variable is set to an incorrect value. This is because the method that is used to set it is not supported in Windows. You can fix this error by changing the following in CMakeLists.txt:
get_filename_component(CHIP_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/third_party/connectedhomeip REALPATH)
to this:
get_filename_component(CHIP_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../../.. REALPATH)
Best regards,
Marte
Hi,Marte
thanks,
To avoid configuration issues, I will do this project under Linux
Best regards