resolve #73 for make: nxdk-cc: Command not found error.
Plus add export to Makefile's NXDK_DIR variable to environment support. In order for able have NXDK's includes recognized.
EDIT: Turns out NXDK has change to new build system. Using eval $(../../bin/activate -s) will setup host's environment variables within GitHub CI. NXDK_DIR no longer work within Makefile file as it needs to be in environment variable in order for nxdk build system to work properly.
resolve #73 for
make: nxdk-cc: Command not found
error.Plus addexport
to Makefile's NXDK_DIR variable to environment support. In order for able have NXDK's includes recognized.EDIT: Turns out NXDK has change to new build system. Using
eval $(../../bin/activate -s)
will setup host's environment variables within GitHub CI.NXDK_DIR
no longer work within Makefile file as it needs to be in environment variable in order for nxdk build system to work properly.