Private
Public Access
2
0
Files
mraa/CMakeLists.txt

19 lines
322 B
CMake
Raw Normal View History

2014-04-10 11:07:05 +01:00
cmake_minimum_required (VERSION 2.8)
project (maa)
set(SWIG_EXECUTABLE /usr/bin/swig)
FIND_PACKAGE(SWIG REQUIRED)
INCLUDE(${SWIG_USE_FILE})
SET(CMAKE_SWIG_FLAGS "")
2014-04-10 11:07:05 +01:00
option(test "Build all tests." OFF)
add_subdirectory (src)
add_subdirectory (examples)
2014-04-10 11:07:05 +01:00
if (test)
enable_testing ()
add_subdirectory (tests)
endif()