Skip to content

Commit

Permalink
Update main CMakeLists.txt with yarp and Panda3D dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Nov 6, 2024
1 parent 5f70567 commit cb7aea6
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#############################################################################
#
# ViSP, open source Visual Servoing Platform software.
# Copyright (C) 2005 - 2023 by Inria. All rights reserved.
# Copyright (C) 2005 - 2024 by Inria. All rights reserved.
#
# This software is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -1896,7 +1896,7 @@ endif()
status("")
status(" Library dirs:")
if(USE_EIGEN3)
status(" Eigen3 include dir:" "${Eigen3_DIR}")
status(" Eigen3 dir:" "${Eigen3_DIR}")
endif()
if(USE_MKL)
status(" MKL include dir:" "${MKL_INCLUDE_DIRS}")
Expand All @@ -1910,6 +1910,16 @@ endif()
if(USE_PCL)
status(" PCL dir:" "${PCL_DIR}")
endif()
if(USE_PANDA3D)
if(Panda3D_DIR)
status(" Panda3D dir:" "${Panda3D_DIR}")
else()
status(" Panda3D dir:" "$ENV{Panda3D_DIR}")
endif()
endif()
if(USE_YARP)
status(" Yarp dir:" "${YARP_DIR}")
endif()

# ========================== auxiliary ==========================
status("")
Expand Down

0 comments on commit cb7aea6

Please sign in to comment.