mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 07:34:45 +00:00
* Adjustment: Cleanups to the case insensitivity code for POSIX systems and add case insensitivty to directory dumping code.
This commit is contained in:
parent
77ea34d2b2
commit
497a94f884
4 changed files with 37 additions and 82 deletions
|
|
@ -163,6 +163,9 @@ endif()
|
|||
option(TORQUE_MULTITHREAD "Multi Threading" ON)
|
||||
mark_as_advanced(TORQUE_MULTITHREAD)
|
||||
|
||||
option(TORQUE_POSIX_PATH_CASE_INSENSITIVE ON)
|
||||
mark_as_advanced(TORQUE_POSIX_PATH_CASE_INSENSITIVE)
|
||||
|
||||
option(TORQUE_DISABLE_MEMORY_MANAGER "Disable memory manager" ON)
|
||||
mark_as_advanced(TORQUE_DISABLE_MEMORY_MANAGER)
|
||||
|
||||
|
|
|
|||
|
|
@ -44,6 +44,9 @@
|
|||
/// Define me if you want to enable Arcane FX support.
|
||||
#cmakedefine TORQUE_AFX_ENABLED
|
||||
|
||||
/// Define me if you want path case insensitivity support on POSIX systems. Does nothing on Windows.
|
||||
#cmakedefine TORQUE_POSIX_PATH_CASE_INSENSITIVE
|
||||
|
||||
/// Define me if you want to enable multithreading support.
|
||||
#cmakedefine TORQUE_MULTITHREAD
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue