에디터를 vim을 이용하여 개발하는것을 좋아하는 사람으로써 IDE가 변경되면 빌드할 방법을 찾곤한다. 이번엔 STM32CubeIDE를 빌드하는방법을 써보겠다. 1. STM32CubeIDE command line으로 수행하기 아래와 같이 스크립트를 작성해서 사용했다. #!/bin/sh CUR_PATH=`pwd -P` PRJ_NAME="" #project명 작성 /Applications/STM32CubeIDE.app/Contents/MacOS/STM32CubeIDE --launcher.suppressErrors -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -cleanBuild ${PRJ_NAME}/Release -impor..