This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
|
cmake_minimum_required(VERSION 3.26)
|
|
project(TP8)
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
|
|
add_executable(TP8
|
|
main.cpp)
|
|
|
|
find_package(Matplot++ CONFIG REQUIRED)
|
|
target_link_libraries(TP8 PRIVATE Matplot++::cimg Matplot++::matplot)
|