Skip to content

Commit

Permalink
Update bullet.pc.cmake
Browse files Browse the repository at this point in the history
Change pkgconfig file to match example in pkg-config man files
  • Loading branch information
sjdrc authored Oct 31, 2019
1 parent bda04cf commit f78a72e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions bullet.pc.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=${prefix}
libdir=${exec_prefix}/@LIB_DESTINATION@
includedir=${prefix}/@INCLUDE_INSTALL_DIR@

Name: bullet
Description: Bullet Continuous Collision Detection and Physics Library
Requires:
Version: @BULLET_VERSION@
Libs: -L@CMAKE_INSTALL_PREFIX@/@LIB_DESTINATION@ -lBulletSoftBody -lBulletDynamics -lBulletCollision -lLinearMath
Cflags: @BULLET_DOUBLE_DEF@ -I@CMAKE_INSTALL_PREFIX@/@INCLUDE_INSTALL_DIR@ -I@CMAKE_INSTALL_PREFIX@/include
Requires:
Libs: -L${libdir} -lBulletSoftBody -lBulletDynamics -lBulletCollision -lLinearMath
Cflags: @BULLET_DOUBLE_DEF@ -I${includedir} -I${prefix}/include

0 comments on commit f78a72e

Please sign in to comment.