16 lines
173 B
CMake
16 lines
173 B
CMake
cmake_minimum_required(VERSION 2.8.8)
|
|
|
|
add_library(
|
|
Memphis
|
|
filestore.cpp
|
|
_memops.cpp
|
|
)
|
|
|
|
install(
|
|
FILES
|
|
filestore.hpp
|
|
_memops.hpp
|
|
DESTINATION
|
|
include/Memphis
|
|
)
|