feat: Add bin directory output for C++ builds

- Update C++/build.bat to create bin/ directory and output executable there
- Update C++/build.sh to create bin/ directory and output executable there
- Update build_all.bat to check for C++/bin/V2GDecoder.exe
- Update build_all.sh to check for C++/bin/V2GDecoder
- Test successful: C++/bin/V2GDecoder.exe working correctly with sample files

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
ChiKyun Kim
2025-09-12 09:44:08 +09:00
parent c6dc6735fa
commit 5056fe18f9
4 changed files with 17 additions and 8 deletions

View File

@@ -96,7 +96,7 @@ if [ $BUILD_ERROR -eq 0 ]; then
echo "생성된 실행 파일들:"
[ -f "DotNet/bin/Release/net8.0/V2GDecoderNet.dll" ] && echo " 📦 .NET: DotNet/bin/Release/net8.0/V2GDecoderNet.dll"
[ -f "V2GDecoder_gcc" ] && echo " 📦 GCC: V2GDecoder_gcc"
[ -f "C++/V2GDecoder" ] && echo " 📦 C++: C++/V2GDecoder"
[ -f "C++/bin/V2GDecoder" ] && echo " 📦 C++: C++/bin/V2GDecoder"
echo
echo "사용법:"