1
0
This repository has been archived on 2024-11-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gymnyo-phy-tp8/CMakeLists.txt
2024-02-23 14:13:43 +01:00

11 lines
228 B
CMake

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)