Skip to content
Snippets Groups Projects
CMakeLists.txt 2.87 KiB
Newer Older
cmake_minimum_required(VERSION 3.10)
Guilhem Saurel's avatar
Guilhem Saurel committed

Guilhem Saurel's avatar
Guilhem Saurel committed
# Project properties
Guilhem Saurel's avatar
Guilhem Saurel committed
set(PROJECT_ORG gepetto)
set(PROJECT_NAME example-robot-data)
set(PROJECT_DESCRIPTION
    "Set of robot URDFs for benchmarking and developed examples")
Guilhem Saurel's avatar
Guilhem Saurel committed
set(PROJECT_URL https://github.com/${PROJECT_ORG}/${PROJECT_NAME})
Guilhem Saurel's avatar
Guilhem Saurel committed

Guilhem Saurel's avatar
Guilhem Saurel committed
# Project options
Guilhem Saurel's avatar
Guilhem Saurel committed
option(BUILD_PYTHON_INTERFACE "Build the python unit tests and helpers" ON)
option(INSTALL_PYTHON_INTERFACE_ONLY "Install *ONLY* the python interface" OFF)
Guilhem Saurel's avatar
Guilhem Saurel committed

# Project configuration
Guilhem Saurel's avatar
Guilhem Saurel committed
if(NOT INSTALL_PYTHON_INTERFACE_ONLY)
  set(PROJECT_USE_CMAKE_EXPORT TRUE)
endif(NOT INSTALL_PYTHON_INTERFACE_ONLY)
set(CUSTOM_HEADER_DIR ${PROJECT_NAME})
set(PROJECT_COMPATIBILITY_VERSION AnyNewerVersion)
Guilhem Saurel's avatar
Guilhem Saurel committed

# Check if the submodule cmake have been initialized
set(JRL_CMAKE_MODULES "${CMAKE_CURRENT_LIST_DIR}/cmake")
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/cmake/base.cmake")
  if(${CMAKE_VERSION} VERSION_LESS "3.14.0")
    message(
      FATAL_ERROR
        "\nPlease run the following command first:\ngit submodule update --init\n"
    )
  else()
    message(STATUS "JRL cmakemodules not found. Let's fetch it.")
    include(FetchContent)
    FetchContent_Declare(
      "jrl-cmakemodules"
      GIT_REPOSITORY "https://github.com/jrl-umi3218/jrl-cmakemodules.git")
    FetchContent_MakeAvailable("jrl-cmakemodules")
    FetchContent_GetProperties("jrl-cmakemodules" SOURCE_DIR JRL_CMAKE_MODULES)
  endif()
endif()

Guilhem Saurel's avatar
Guilhem Saurel committed
# JRL-cmakemodule setup
include("${JRL_CMAKE_MODULES}/base.cmake")
Guilhem Saurel's avatar
Guilhem Saurel committed
message(STATUS "${PROJECT_DESCRIPTION}, version ${PROJECT_VERSION}")
message(STATUS "Copyright (C) 2018-2023 LAAS-CNRS, University of Edinburgh")
message(STATUS "                        Heriot-Watt University, INRIA")
Guilhem Saurel's avatar
Guilhem Saurel committed
message(STATUS "All rights reserved.")
message(STATUS "Released under the BSD 3-Clause License.")
Guilhem Saurel's avatar
Guilhem Saurel committed
# Project definition
Guilhem Saurel's avatar
Guilhem Saurel committed
compute_project_args(PROJECT_ARGS LANGUAGES CXX)
project(${PROJECT_NAME} ${PROJECT_ARGS})

if(BUILD_PYTHON_INTERFACE)
  add_project_dependency(eigenpy 3.0.0 REQUIRED)
  add_project_dependency(pinocchio 2.7.0 REQUIRED)
Guilhem Saurel's avatar
Guilhem Saurel committed
  string(REGEX REPLACE "-" "_" PY_NAME ${PROJECT_NAME})
  add_subdirectory(python)
  if(BUILD_TESTING)
    add_subdirectory(unittest)
  endif(BUILD_TESTING)
endif(BUILD_PYTHON_INTERFACE)

if(NOT INSTALL_PYTHON_INTERFACE_ONLY)
  add_library(${PROJECT_NAME} INTERFACE)
  target_include_directories(${PROJECT_NAME}
                             INTERFACE $<INSTALL_INTERFACE:include>)
  target_compile_definitions(
    ${PROJECT_NAME}
    INTERFACE
      EXAMPLE_ROBOT_DATA_MODEL_DIR="$<INSTALL_PREFIX>/share/${PROJECT_NAME}/robots"
  )
Guilhem Saurel's avatar
Guilhem Saurel committed
  install(
    TARGETS ${PROJECT_NAME}
    EXPORT ${TARGETS_EXPORT_NAME}
    DESTINATION lib)

  install(FILES include/${CUSTOM_HEADER_DIR}/path.hpp
          DESTINATION include/${CUSTOM_HEADER_DIR})
Guilhem Saurel's avatar
Guilhem Saurel committed
  install(DIRECTORY robots DESTINATION share/${PROJECT_NAME})
  install(FILES package.xml DESTINATION share/${PROJECT_NAME})
endif(NOT INSTALL_PYTHON_INTERFACE_ONLY)