mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 09:04:38 +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
|
# Begin handling platform specific stuff
|
||||||
# Handle Platform POSIX
|
# Handle Platform POSIX
|
||||||
if (UNIX AND NOT APPLE)
|
if (UNIX)
|
||||||
file(GLOB TORQUE_PLATFORM_POSIX_SOURCES "platformPOSIX/*.cpp")
|
file(GLOB TORQUE_PLATFORM_POSIX_SOURCES "platformPOSIX/*.cpp")
|
||||||
|
|
||||||
if (TORQUE_CPU_X32 OR TORQUE_CPU_X64)
|
if (TORQUE_CPU_X32 OR TORQUE_CPU_X64)
|
||||||
file(GLOB TORQUE_PLATFORM_X86_UNIX_SOURCES "platformX86UNIX/*.cpp")
|
file(GLOB TORQUE_PLATFORM_X86_UNIX_SOURCES "platformX86UNIX/*.cpp")
|
||||||
set(TORQUE_PLATFORM_POSIX_SOURCES ${TORQUE_PLATFORM_POSIX_SOURCES} ${TORQUE_PLATFORM_X86_UNIX_SOURCES})
|
set(TORQUE_PLATFORM_POSIX_SOURCES ${TORQUE_PLATFORM_POSIX_SOURCES} ${TORQUE_PLATFORM_X86_UNIX_SOURCES})
|
||||||
endif (TORQUE_CPU_X32 OR TORQUE_CPU_X64)
|
endif (TORQUE_CPU_X32 OR TORQUE_CPU_X64)
|
||||||
endif (UNIX AND NOT APPLE)
|
endif (UNIX)
|
||||||
|
|
||||||
# Handle platformMac
|
# Handle platformMac
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue