mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
13 lines
253 B
CMake
13 lines
253 B
CMake
cmake_minimum_required(VERSION 3.7)
|
|
|
|
project(villas-common)
|
|
|
|
add_library(villas-common SHARED
|
|
plugin.cpp
|
|
utils.cpp
|
|
memory.cpp
|
|
memory_manager.cpp)
|
|
|
|
target_include_directories(villas-common
|
|
PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}/../../include/villas)
|