Files
OpenSpace/modules/spout/include.cmake
Alexander Bock b3abcbdf4f Add support for disabling support for modules (closes # 650)
Disable SPOUT module on non-Windows machines
2018-09-02 14:45:25 -04:00

12 lines
183 B
CMake

set (OPENSPACE_DEPENDENCIES
base
)
if (WIN32)
set(DEFAULT_MODULE ON)
endif ()
# Spout is not supported on non-Windows machines
if (NOT WIN32)
set(SUPPORTED OFF)
endif ()