Fayorg
/
gymnyo-phy-tp8
Archived
1
0
Fork 0

add: mathplot as dependency

This commit is contained in:
Elie Baier 2024-02-23 14:13:43 +01:00
parent 47196f20c5
commit f0af7118b8
2 changed files with 4 additions and 0 deletions

View File

@ -5,3 +5,6 @@ set(CMAKE_CXX_STANDARD 14)
add_executable(TP8 add_executable(TP8
main.cpp) main.cpp)
find_package(Matplot++ CONFIG REQUIRED)
target_link_libraries(TP8 PRIVATE Matplot++::cimg Matplot++::matplot)

View File

@ -3,6 +3,7 @@
// //
#include "iostream" #include "iostream"
#include "matplot/matplot.h"
using namespace std; using namespace std;