35 lines
713 B
CMake
35 lines
713 B
CMake
# Don't add other subdirectories if only max plugins are selected.
|
|
ADD_SUBDIRECTORY(misc)
|
|
|
|
IF(WITH_NEL_TOOLS)
|
|
ADD_SUBDIRECTORY(memory)
|
|
ENDIF()
|
|
|
|
# Max plugins are under the 3d directory as well.
|
|
# Allow to compile only max plugins without other tools.
|
|
IF(WITH_NEL_TOOLS OR WITH_NEL_MAXPLUGIN)
|
|
ADD_SUBDIRECTORY(3d)
|
|
ENDIF()
|
|
|
|
# Don't add other subdirectories if only max plugins are selected.
|
|
IF(WITH_NEL_TOOLS)
|
|
IF(WITH_PACS)
|
|
ADD_SUBDIRECTORY(pacs)
|
|
ENDIF()
|
|
|
|
IF(WITH_LOGIC)
|
|
ADD_SUBDIRECTORY(logic)
|
|
ENDIF()
|
|
|
|
IF(WITH_GEORGES)
|
|
ADD_SUBDIRECTORY(georges)
|
|
ENDIF()
|
|
|
|
IF(WITH_SOUND)
|
|
ADD_SUBDIRECTORY(sound)
|
|
ENDIF()
|
|
ENDIF()
|
|
|
|
IF(WITH_NEL_TESTS)
|
|
ADD_SUBDIRECTORY(nel_unit_test)
|
|
ENDIF()
|