Skip to content

Commit

Permalink
rename library from mini-maps to maps-mini
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricefallon committed Feb 15, 2017
1 parent dd2b32f commit f7ca8f4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions maps_server/src/libmaps-mini/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(LIB_NAME "mini-maps")
set(LIB_NAME "maps-mini")

# Create a shared library
add_library(${LIB_NAME} SHARED
Expand Down Expand Up @@ -44,6 +44,6 @@ pods_install_pkg_config_file(${LIB_NAME}
VERSION 0.0.1)


add_executable(mini-maps-test TestMain.cpp)
pods_use_pkg_config_packages(mini-maps-test mini-maps)
pods_install_executables(mini-maps-test)
add_executable(maps-mini-test TestMain.cpp)
pods_use_pkg_config_packages(maps-mini-test maps-mini)
pods_install_executables(maps-mini-test)
2 changes: 1 addition & 1 deletion maps_server/src/terrain-map/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pods_install_headers(
pods_install_libraries(${LIB_NAME})

set(REQUIRED_PACKAGES
mini-maps
maps-mini
)
pods_use_pkg_config_packages(${LIB_NAME} ${REQUIRED_PACKAGES})

Expand Down
4 changes: 2 additions & 2 deletions maps_server/src/terrain-map/FillMethods.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "FillMethods.hpp"

#include <mini-maps/DepthImageView.hpp>
#include <mini-maps/DepthImage.hpp>
#include <maps-mini/DepthImageView.hpp>
#include <maps-mini/DepthImage.hpp>

using namespace terrainmap;

Expand Down
8 changes: 4 additions & 4 deletions maps_server/src/terrain-map/TerrainMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

#include <maps_utils/BotWrapper.hpp>

#include <mini-maps/ViewClient.hpp>
#include <mini-maps/DepthImage.hpp>
#include <mini-maps/DepthImageView.hpp>
#include <mini-maps/LcmTranslator.hpp>
#include <maps-mini/ViewClient.hpp>
#include <maps-mini/DepthImage.hpp>
#include <maps-mini/DepthImageView.hpp>
#include <maps-mini/LcmTranslator.hpp>

#include "FillMethods.hpp"

Expand Down

0 comments on commit f7ca8f4

Please sign in to comment.