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

@@ -73,8 +73,8 @@ if %BUILD_ERROR% equ 0 (
if exist "VC\x64\Debug\V2GDecoder.exe" (
echo 📦 VC2022: VC\x64\Debug\V2GDecoder.exe
)
if exist "C++\V2GDecoder.exe" (
echo 📦 C++: C++\V2GDecoder.exe
if exist "C++\bin\V2GDecoder.exe" (
echo 📦 C++: C++\bin\V2GDecoder.exe
)
echo.