Skip to content
Snippets Groups Projects
Commit b339c12d authored by Thomas Moulard's avatar Thomas Moulard
Browse files

Fix import directive (default include path was wrong).

parent e5aee687
No related branches found
No related tags found
No related merge requests found
# Generate header with default script directory.
SET(DG_IMPORT_DEFAULT_PATHS \"${CMAKE_INSTALL_PREFIX}/script\")
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}/import-default-paths.h.cmake
${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}/import-default-paths.h)
# Copyright 2010, Olivier Stasse, JRL, CNRS/AIST
#
# This file is part of dynamic-graph.
# dynamic-graph is free software: you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation, either version 3 of
# the License, or (at your option) any later version.
#
# dynamic-graph is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Lesser Public License for more details. You should have
# received a copy of the GNU Lesser General Public License along with
# dynamic-graph. If not, see <http://www.gnu.org/licenses/>.
# Add default script directory.
# It is used by the import directive of the sot shell to locate
# scripts.
SET(DG_IMPORT_DEFAULT_PATHS
"${CMAKE_INSTALL_PREFIX}/share/dynamic-graph/script")
CONFIGURE_FILE(
${PROJECT_NAME}/import-default-paths.h.cmake
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/import-default-paths.h)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/import-default-paths.h
DESTINATION include/${PROJECT_NAME}
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ OWNER_WRITE
)
# Headers list.
SET(${PROJECT_NAME}_HEADERS
contiifstream.h
debug.h
......@@ -16,7 +42,6 @@ interpreter-helper.h
plugin-loader.h
pool.h
import.h
import-default-paths.h
exception-abstract.h
exception-factory.h
......@@ -60,4 +85,4 @@ ENDFOREACH(lHeader)
INSTALL(FILES ${fullpath_${PROJECT_NAME}_HEADERS}
DESTINATION include/${PROJECT_NAME}
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ OWNER_WRITE
)
\ No newline at end of file
)
......@@ -23,6 +23,6 @@
# define DG_FACTORY_COMMAND_IMPORT_DEFAULT_PATHS_H
/// Default script path as known by CMake at configure time.
# define DG_IMPORT_DEFAULT_PATHS @DG_IMPORT_DEFAULT_PATHS@
# define DG_IMPORT_DEFAULT_PATHS "@DG_IMPORT_DEFAULT_PATHS@"
#endif //! SOT_FACTORY_COMMAND_IMPORT_DEFAULT_PATHS_H
......@@ -5,6 +5,7 @@ SET(LIBRARY_NAME ${PROJECT_NAME})
INCLUDE_DIRECTORIES(
${CMAKE_CURRENT_SOURCE_DIR}/../include
${CMAKE_CURRENT_BINARY_DIR}/../include
)
# Verbosity level
......@@ -86,4 +87,4 @@ SET_TARGET_PROPERTIES(${plugin}
INSTALL(TARGETS ${plugin}
DESTINATION lib/plugin)
ENDFOREACH(plugin_file)
\ No newline at end of file
ENDFOREACH(plugin_file)
......@@ -37,6 +37,14 @@
#include <dynamic-graph/exception-factory.h>
#include <dynamic-graph/interpreter.h>
// The default import paths has to be passed from the build system
// as a -D flag for instance.
// It contains the absolute path to the default directory where
// the scripts will be searched.
#ifndef DG_IMPORT_DEFAULT_PATHS
# error "Default import path is not defined."
#endif //! DG_IMPORT_DEFAULT_PATHS
static const char* ENV_DG_PATH = "DG_PATH";
namespace dynamicgraph
......@@ -182,6 +190,7 @@ namespace dynamicgraph
("failed to import module ``%1%'' (import paths: %2%).");
fmt % module;
fmt % scriptDirectories;
std::cout << fmt.str () << std::endl;
DG_THROW ExceptionFactory
(ExceptionFactory::READ_FILE, fmt.str ());
return;
......@@ -222,6 +231,7 @@ namespace dynamicgraph
boost::format fmt (" (in line %1% of file ``%2%'')");
fmt % lineIdx % filename;
msg = msg + fmt.str();
std::cout << msg << std::endl;
throw;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment