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 d0b64d6 commit b33eacaCopy full SHA for b33eaca
test_tf2/CMakeLists.txt
@@ -32,9 +32,11 @@ find_package(tf2_ros REQUIRED)
32
33
ament_find_gtest()
34
35
-find_package(PkgConfig REQUIRED)
36
-pkg_check_modules(bullet REQUIRED bullet)
37
-include_directories(include ${bullet_INCLUDE_DIRS})
+if(WIN32)
+ set(BULLET_ROOT $ENV{ChocolateyInstall}/lib/bullet)
+endif()
38
+find_package(Bullet REQUIRED)
39
+include_directories(include ${BULLET_INCLUDE_DIRS})
40
41
ament_add_gtest(buffer_core_test test/buffer_core_test.cpp)
42
if(TARGET buffer_core_test)
0 commit comments