mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 04:15:36 +00:00
* BugFix: Correct the platformPOSIX sources not being compiled for Mac.
This commit is contained in:
parent
7380161054
commit
24707b38cf
1 changed files with 2 additions and 2 deletions
|
|
@ -126,14 +126,14 @@ file(GLOB TORQUE_I18N_SOURCES "i18n/*.cpp")
|
|||
|
||||
# Begin handling platform specific stuff
|
||||
# Handle Platform POSIX
|
||||
if (UNIX AND NOT APPLE)
|
||||
if (UNIX)
|
||||
file(GLOB TORQUE_PLATFORM_POSIX_SOURCES "platformPOSIX/*.cpp")
|
||||
|
||||
if (TORQUE_CPU_X32 OR TORQUE_CPU_X64)
|
||||
file(GLOB TORQUE_PLATFORM_X86_UNIX_SOURCES "platformX86UNIX/*.cpp")
|
||||
set(TORQUE_PLATFORM_POSIX_SOURCES ${TORQUE_PLATFORM_POSIX_SOURCES} ${TORQUE_PLATFORM_X86_UNIX_SOURCES})
|
||||
endif (TORQUE_CPU_X32 OR TORQUE_CPU_X64)
|
||||
endif (UNIX AND NOT APPLE)
|
||||
endif (UNIX)
|
||||
|
||||
# Handle platformMac
|
||||
if (APPLE)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue