Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
acef3c4
feat: Add CMake configuration
Kreijstal Dec 22, 2024
4141c2e
fix small stuff for windows
Kreijstal May 18, 2025
55f881e
solve packaging issues
Kreijstal May 18, 2025
629ab2d
add cmake programs
May 21, 2025
d87f1dd
Some debugging messages in between
May 21, 2025
840d207
holy shit it worked
May 21, 2025
fd039d1
commenting out debug messages
May 21, 2025
a8e234f
fixing
May 21, 2025
3597af1
lets add stuff
May 21, 2025
4a995dc
making test happy
May 21, 2025
aaf48fa
It compiles with clang on windows as well
May 21, 2025
f8cb13e
make sources clang-format compliant
CoolSpy3 May 23, 2025
c763095
fix WbMicrosoftTextToSpeech.cpp
Kreijstal Jun 13, 2025
9fee9bc
Refactor Webots build/developer env and example makefiles
Kreijstal Apr 27, 2026
f56cc3c
Fix packaged SDK and dependency discovery
Kreijstal Aug 20, 2026
8694566
Build bundled plugins and controllers for Windows packages
Kreijstal Aug 21, 2026
058ec0c
Normalize pkg-config path for Windows controller builds
Kreijstal Aug 21, 2026
bd0f3df
Keep Windows controller environment list-safe
Kreijstal Aug 21, 2026
e3fee54
Use ordered distributable Makefile targets
Kreijstal Aug 21, 2026
55f4857
Stage Windows controller runtimes for bundled builds
Kreijstal Aug 21, 2026
db0d0d8
Preserve library staging in aggregate builds
Kreijstal Aug 21, 2026
8336eb9
Skip Java vehicle bindings when disabled
Kreijstal Aug 21, 2026
5370be3
Build Windows project plugins for packages
Kreijstal Aug 21, 2026
e7c58bf
Clean bundled targets before package builds
Kreijstal Aug 21, 2026
ea0fd32
Use Qt 6 root include for vehicle window moc
Kreijstal Aug 21, 2026
1e3d801
Keep native vehicle libraries without Java
Kreijstal Aug 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
156 changes: 79 additions & 77 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,77 +1,79 @@
# Global rules #
################

# Build directories
build
com
webots_catkin_ws

# Compiled source
*.exe
*.o
*.d
*.class
*.so
*.dylib
*.dll
*.lib
*.a
*.cof
*.hex
*.pyc
*.gch

# Packages
*.7z
*.bz2
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.xz
*.zip

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
.directory
ehthumbs.db
Thumbs.db
*.swp

# Text editor backup files
*~

# Log files
*.log

# Blender cache
*.blend1

# Webots generated files
*.cache

# IDE files
.vscode

# Local rules #
###############

/.clang-format
/msys64
/webots
/webots-controller
/webots.lnk
/webots_debug_output.txt
/util

# world thumbnail files
.*.jpg

# Claude.ai
/.claude
# Global rules #
################

# Build directories
build
com
webots_catkin_ws

# Compiled source
*.exe
*.o
*.d
*.class
*.so
*.dylib
*.dll
*.lib
*.a
*.cof
*.hex
*.pyc
*.gch

# Packages
*.7z
*.bz2
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.xz
*.zip

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
.directory
ehthumbs.db
Thumbs.db
*.swp

# Text editor backup files
*~

# Log files
*.log

# Blender cache
*.blend1

# Webots generated files
*.cache

# IDE files
.vscode

# Local rules #
###############

/.clang-format
/msys64
/webots
/webots-controller
/webots.lnk
/webots_debug_output.txt
/util

# world thumbnail files
.*.jpg
.aider*
.env

# Claude.ai
/.claude
Loading
Loading