Fayorg
/
gymnyo-phy-tp8
Archived
1
0
Fork 0
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.
gymnyo-phy-tp8/CMakeLists.txt

12 lines
248 B
CMake

cmake_minimum_required(VERSION 3.26)
project(TP8)
set(CMAKE_CXX_STANDARD 14)
add_executable(TP8
main.cpp
extract.cpp)
find_package(Matplot++ CONFIG REQUIRED)
target_link_libraries(TP8 PRIVATE Matplot++::cimg Matplot++::matplot)