games101-hw/04/code/CMakeLists.txt

11 lines
211 B
CMake

cmake_minimum_required(VERSION 3.10)
project(BezierCurve)
find_package(OpenCV REQUIRED)
set(CMAKE_CXX_STANDARD 14)
add_executable(BezierCurve main.cpp)
target_link_libraries(BezierCurve ${OpenCV_LIBRARIES})