2
0

CMakeLists.txt 273 B

12345678910
  1. ADD_SUBDIRECTORY(2DPhysics)
  2. # Note that FindBullet requires CMake >= 2.8.4 to find Bullet >= 2.77
  3. # due to Bullet's header install directory location changing.
  4. FIND_PACKAGE(Bullet)
  5. IF(BULLET_FOUND)
  6. ADD_SUBDIRECTORY(3DPhysics)
  7. ENDIF(BULLET_FOUND)
  8. ADD_SUBDIRECTORY(UI)