- 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>
26 lines
494 B
Bash
26 lines
494 B
Bash
#!/bin/bash
|
|
echo "Building V2GDecoder..."
|
|
|
|
# bin 폴더 생성
|
|
mkdir -p bin
|
|
|
|
gcc -o bin/V2GDecoder V2GDecoder.c \
|
|
src/iso1/*.c \
|
|
src/iso2/*.c \
|
|
src/din/*.c \
|
|
src/codec/*.c \
|
|
-I./src/codec \
|
|
-I./src/iso1 \
|
|
-I./src/iso2 \
|
|
-I./src/din \
|
|
-Wall -O2
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "Build successful! bin/V2GDecoder created."
|
|
echo
|
|
echo "Usage:"
|
|
echo " ./bin/V2GDecoder ../Sample/test5.exi"
|
|
else
|
|
echo "Build failed with error code $?"
|
|
exit 1
|
|
fi |