2014-04-10 11:07:05 +01:00
|
|
|
cmake_minimum_required (VERSION 2.8)
|
2014-04-08 18:43:26 +01:00
|
|
|
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)
|
|
|
|
|
|
2014-04-08 18:43:26 +01:00
|
|
|
add_subdirectory (src)
|
|
|
|
|
add_subdirectory (examples)
|
2014-04-10 11:07:05 +01:00
|
|
|
|
|
|
|
|
if (test)
|
|
|
|
|
enable_testing ()
|
|
|
|
|
add_subdirectory (tests)
|
|
|
|
|
endif()
|