summaryrefslogtreecommitdiff
path: root/test/ports/azrtos_build_tx_ghs.bat
blob: 20f305eb6cbe72d481694f5265f32b4b460d2534 (plain)
1
2
3
4
5
6
7
8
9
10
11
@ECHO OFF

ECHO INFO: Building %CD%...

%AZRTOS_GHS_COMP_GBUILD% -top azure_rtos_workspace.gpj tx.a txe.a sample_threadx sample_threadx_el
IF %ERRORLEVEL% NEQ 0 (
    echo ERROR: build failed.
    EXIT /B 1
)

ECHO INFO: Build completed successfully!