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 3fd9206 commit 02189d6Copy full SHA for 02189d6
CMakeLists.txt
@@ -59,6 +59,13 @@ target_link_libraries(test_tif_loader PUBLIC
59
${PROJECT_NAME}
60
)
61
62
+# Fix for yaml_cpp not resolving correctly on macOS
63
+# https://github.com/ethz-asl/grid_map_geo/pull/59#discussion_r1474669370
64
+if (APPLE)
65
+ find_package(yaml_cpp_vendor REQUIRED)
66
+ link_directories(${yaml_cpp_vendor_LIBRARY_DIRS})
67
+endif()
68
+
69
# Install
70
install(
71
DIRECTORY include/
0 commit comments