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 bf5dab5 commit b4dbce0Copy full SHA for b4dbce0
tests/myproj/CMakeLists.txt
@@ -28,6 +28,8 @@ run_conan()
28
29
project(myproj VERSION 0.2.0 LANGUAGES CXX C)
30
31
+include(cmake/rpath.cmake) # Set rpath for installed programs, used in runtime installation test
32
+
33
set(PCH_HEADERS
34
<Eigen/Dense>
35
<fmt/core.h>
@@ -96,12 +98,12 @@ target_link_libraries(main PRIVATE myproj_project_options myproj_project_warning
96
98
97
99
target_find_dependencies(main
100
PUBLIC
101
+ PACKAGE docopt CONFIG
102
PACKAGE fmt CONFIG
103
PACKAGE Eigen3 CONFIG
- PACKAGE docopt CONFIG
104
)
105
-target_link_system_libraries(main PRIVATE fmt::fmt Eigen3::Eigen docopt)
106
+target_link_system_libraries(main PRIVATE docopt fmt::fmt Eigen3::Eigen)
107
108
add_subdirectory(libs)
109
0 commit comments