mirror of
https://github.com/eclipse/upm.git
synced 2025-03-15 04:57:30 +03:00
15 lines
291 B
CMake
15 lines
291 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
project (upm)
|
|
|
|
set (SWIG_EXECUTABLE /usr/bin/swig)
|
|
find_package (SWIG REQUIRED)
|
|
include (${SWIG_USE_FILE})
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(MAA maa>=0.1.1)
|
|
|
|
set (CMAKE_SWIG_FLAGS "")
|
|
|
|
add_subdirectory (src)
|
|
add_subdirectory (examples)
|