Add Win32 support in README, build scripts, and example demo.
[facial-landmarks-for-cubism.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 3.16)
2
3 project(FacialLandmarksForCubism_project)
4
5 add_library(FacialLandmarksForCubism STATIC src/facial_landmark_detector.cpp)
6 set_target_properties(FacialLandmarksForCubism PROPERTIES PUBLIC_HEADER include/facial_landmark_detector.h)
7
8 target_include_directories(FacialLandmarksForCubism PRIVATE include)
9 target_link_libraries(FacialLandmarksForCubism)
10