Compare commits

..

No commits in common. "c20f540b47c9d85d36e12f0acf418e00ebc6c274" and "e4325de0929ce5a0984f0177cf42f0dded3ff75d" have entirely different histories.

3 changed files with 1 additions and 42 deletions

View File

@ -1,15 +0,0 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
[*.{cpp,hpp,h,c,cc,cxx}]
indent_style = space
indent_size = 2
[*.{json,yml,yaml}]
indent_style = space
indent_size = 2

5
tooling2/.gitignore vendored
View File

@ -1,5 +1,2 @@
build/
.claude/
bin/
*.db
*.txt
.claude/

View File

@ -1,23 +0,0 @@
#!/bin/bash
# Create build directory if it doesn't exist
mkdir -p build/tmp
if [ ! -d "build/tmp" ]; then
# Configure project using CMake with Ninja generator for Release build
cmake -S . -B build/tmp -G Ninja -DCMAKE_BUILD_TYPE=Release
fi
# Build project using Ninja
cmake --build build/tmp --config Release
# Create bin directory if it doesn't exist
mkdir -p bin
# Copy binary to bin folder
# Use .exe extension on Windows, no extension on Unix-like systems
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "win32" ]]; then
cp build/tmp/r3_gh_tool.exe bin/
else
cp build/tmp/r3_gh_tool bin/
fi