Turn HAVOK_TPV off and switch to HACD in case somebody tries a Havok build on Linux
parent
3864750167
commit
0edd174dec
|
|
@ -227,13 +227,18 @@ set(UNATTENDED OFF CACHE BOOL "Should be set to ON for building with VC Express
|
||||||
|
|
||||||
set(USE_PRECOMPILED_HEADERS ON CACHE BOOL "Enable use of precompiled header directives where supported.")
|
set(USE_PRECOMPILED_HEADERS ON CACHE BOOL "Enable use of precompiled header directives where supported.")
|
||||||
# <FS:ND> When using Havok, we have to turn OpenSim support off
|
# <FS:ND> When using Havok, we have to turn OpenSim support off
|
||||||
if( HAVOK_TPV )
|
if (HAVOK_TPV)
|
||||||
if( OPENSIM )
|
if (OPENSIM)
|
||||||
message( "compiling with Havok libraries, disabling OpenSim support" )
|
message("compiling with Havok libraries, disabling OpenSim support")
|
||||||
endif( OPENSIM )
|
endif (OPENSIM)
|
||||||
|
|
||||||
set( OPENSIM OFF )
|
if (LINUX)
|
||||||
endif( HAVOK_TPV )
|
message("compiling with Havok libraries is not supported on Linux - switching to HACD")
|
||||||
|
set(HAVOK_TPV OFF)
|
||||||
|
endif (LINUX)
|
||||||
|
|
||||||
|
set(OPENSIM OFF)
|
||||||
|
endif (HAVOK_TPV)
|
||||||
# </FS:ND>
|
# </FS:ND>
|
||||||
|
|
||||||
source_group("CMake Rules" FILES CMakeLists.txt)
|
source_group("CMake Rules" FILES CMakeLists.txt)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue