blob: a777010b98b7a54a730f63dbca230ca9ca5dc99b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
SET(USE_SRC TRUE CACHE BOOL "enable/disable SRC plugin")
IF(USE_SRC)
MESSAGE( STATUS "SRC ON")
add_subdirectory(srconverter)
ELSE(USE_SRC)
MESSAGE( STATUS "SRC OFF")
ENDIF(USE_SRC)
|