SmartAudio/package/avs/sampleapp/files/source/build/cmake/TestOptions.cmake

8 lines
313 B
CMake
Raw Normal View History

2018-07-13 01:31:50 +00:00
option(NETWORK_INTEGRATION_TESTS "Enable network integration tests for ACL." OFF)
if(NETWORK_INTEGRATION_TESTS AND (${CMAKE_SYSTEM_NAME} MATCHES "Linux"))
if(NOT NETWORK_INTERFACE)
message(FATAL_ERROR "Must pass network interface")
endif()
add_definitions(-DNETWORK_INTEGRATION_TESTS)
endif()