Hi @EdwinHz
I have used an example code, but it is failing due to launching Eclipse IDE.
Here is the batch file
-------------
# Batch file to build an Eclipse project from the command line on Windows
# Example for using MCUXpresso IDE
# path to GNU tools and compiler: arm-none-eabi-gcc.exe, ....
SET TOOLCHAIN_PATH=C:\nxp\MCUXpressoIDE_10.0.2_411\ide\tools\bin
# variable to the command line Eclipse IDE executable
SET IDE=C:\nxp\MCUXpressoIDE_11.7.1_9221\ide\mcuxpressoidec.exe
ECHO Extending PATH if not already present
ECHO %PATH%|findstr /i /c:"%TOOLCHAIN_PATH:"=%">nul || set PATH=%PATH%;%TOOLCHAIN_PATH%
ECHO Launching Eclipse IDE
"%IDE%" -nosplash --launcher.suppressErrors -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data "c:\tmp\wsp" -build evkmimxrt1170_freertos_event_cm7
I have followed the instruction on the link, but it is still not working
WARNING: No Project matched "evkmimxrt1170_freertos_event_cm7". Skipping...
-----------
C:\CL_NXP\CommandLine_Test>ECHO Launching Eclipse IDE
Launching Eclipse IDE
C:\CL_NXP\CommandLine_Test>"C:\nxp\MCUXpressoIDE_11.7.1_9221\ide\mcuxpressoidec.exe" -nosplash --launcher.suppressErrors -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data "c:\tmp\wsp" -build evkmimxrt1170_freertos_event_cm7
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
WARNING: No Project matched "evkmimxrt1170_freertos_event_cm7". Skipping...
===========