Skip to content

Commit 903d1aa

Browse files
committed
Improve integration example
1 parent 97559d6 commit 903d1aa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/integration/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ cmake_minimum_required(VERSION 3.14)
22
project(myproject VERSION 1.0.1)
33
set(CMAKE_CXX_STANDARD 17)
44

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+
58
find_package(Matplot++)
69

710
if (Matplot++_FOUND)
811
add_executable(myprogram main.cpp)
912
target_link_libraries(myprogram PRIVATE Matplot++::matplot)
10-
endif()
13+
endif ()

0 commit comments

Comments
 (0)