mirror of
https://github.com/overte-org/overte.git
synced 2025-05-28 06:30:39 +02:00
11 lines
256 B
CMake
11 lines
256 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
set(TARGET_NAME faceshift)
|
|
project(${TARGET_NAME})
|
|
|
|
# grab the implemenation and header files
|
|
file(GLOB FACESHIFT_SRCS include/*.h src/*.cpp)
|
|
|
|
include_directories(include)
|
|
|
|
add_library(${TARGET_NAME} ${FACESHIFT_SRCS})
|