mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
* BugFix: Correct convexDecomp compilation by setting the LINUX flag when necessary.
* BugFix: Update OpenAL to correct a compilation error on Linux.
This commit is contained in:
parent
e071f1d901
commit
7380161054
234 changed files with 30864 additions and 7523 deletions
|
|
@ -1,3 +1,7 @@
|
|||
file(GLOB CONVEX_DECOMP_SOURCES "*.cpp")
|
||||
add_library(convexDecomp STATIC ${CONVEX_DECOMP_SOURCES})
|
||||
target_include_directories(convexDecomp PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
|
||||
if (UNIX AND NOT APPLE)
|
||||
target_compile_definitions(convexDecomp PUBLIC LINUX)
|
||||
endif (UNIX AND NOT APPLE)
|
||||
Loading…
Add table
Add a link
Reference in a new issue