14 lines
185 B
CMake
14 lines
185 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(tables)
|
|
|
|
set(SOURCES
|
|
table.cpp
|
|
cmap.cpp
|
|
hhea.cpp
|
|
hmtx.cpp
|
|
head.cpp
|
|
name.cpp
|
|
)
|
|
|
|
add_library(tables STATIC ${SOURCES})
|