@echo off rem Start script for Axivion local build and CI build rem - 1st param: name of an Eclipse Build configuration rem set CONFIG_NAME=%1 if defined AXIVION_LOCAL_BUILD ( echo Local Build of %CONFIG_NAME% rfgscript "%~dp0clone_build_structure.py" "%CONFIG_NAME%" make -C "%LOCAL_BUILD_DIR%" CC=cafeCC CXX=cafeCC all ) else ( echo CI Build of %CONFIG_NAME% eclipsec ^ --launcher.suppressErrors ^ -nosplash ^ -application org.eclipse.cdt.managedbuilder.core.headlessbuild ^ -importAll "%IDE_PROJECT_PATH%" ^ -data "%IDE_WORKSPACE_PATH%" ^ -E CC=cafeCC ^ -E CXX=cafeCC ^ -cleanBuild "%CONFIG_NAME%" )