Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 10 additions & 0 deletions Engine/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,16 @@ if(TORQUE_TESTING)
endif()
#endif()

set(JOLT_DEBUG OFF)

if(WIN32)
set(JOLT_DEBUG ON)
endif()
advanced_option(DEBUG_RENDERER_IN_DEBUG_AND_RELEASE "Debug Renderer currently windows only" ${JOLT_DEBUG})
advanced_option(USE_STATIC_MSVC_RUNTIME_LIBRARY "Static MSVC Runtimes" OFF)
advanced_option(USE_STATIC_CRT "Static MSVC Runtimes MTd" OFF)
add_subdirectory(JoltPhysics/Build ${TORQUE_LIB_TARG_DIRECTORY}/JoltPhysics EXCLUDE_FROM_ALL)

#misc randoms
mark_as_advanced(WINDRES)
mark_as_advanced(AUDIOUNIT_INCLUDE_DIR)
Expand Down
1 change: 1 addition & 0 deletions Engine/lib/JoltPhysics/.clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DisableFormat: true
15 changes: 15 additions & 0 deletions Engine/lib/JoltPhysics/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

[*.{cpp,h,inl,cmake,sh,bat,hlsl}]
indent_style = tab
indent_size = 4
tab_width = 4
trim_trailing_whitespace = true
insert_final_newline = true

[CMakeLists.txt]
indent_style = tab
indent_size = 4
tab_width = 4
trim_trailing_whitespace = true
insert_final_newline = true
18 changes: 18 additions & 0 deletions Engine/lib/JoltPhysics/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Convert LF to CRLF on windows on checkout and convert back before submitting to the repository
* text=auto

# Explicitly declare text files to always be normalized and converted to native line endings on checkout
*.cpp text
*.inl text
*.h text
*.tof text
*.bat text

# Force shell files to use LF only
*.sh text eol=lf
gradlew text eol=lf

# Declare binary file types
*.tga binary
*.bof binary
*.bin binary
9 changes: 9 additions & 0 deletions Engine/lib/JoltPhysics/.github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
Loading
Loading