We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97559d6 commit 903d1aaCopy full SHA for 903d1aa
test/integration/CMakeLists.txt
@@ -2,9 +2,12 @@ cmake_minimum_required(VERSION 3.14)
2
project(myproject VERSION 1.0.1)
3
set(CMAKE_CXX_STANDARD 17)
4
5
+# Uncomment and adjust the next line if Matplot++ was not installed in a default directory
6
+# list(APPEND CMAKE_MODULE_PATH put/your/installation/directory/here)
7
+
8
find_package(Matplot++)
9
10
if (Matplot++_FOUND)
11
add_executable(myprogram main.cpp)
12
target_link_libraries(myprogram PRIVATE Matplot++::matplot)
-endif()
13
+endif ()
0 commit comments