Skip to content

Commit

Permalink
Merge pull request #6 from wkentaro/migration-to-jade
Browse files Browse the repository at this point in the history
[ml_classifers] eigen -> Eigen3 in CMakeLists.txt
  • Loading branch information
sniekum committed Oct 15, 2015
2 parents 9f16a0c + a9b0068 commit ef8fd55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ add_service_files(FILES
generate_messages(DEPENDENCIES std_msgs)

catkin_package(
DEPENDS eigen
DEPENDS Eigen3
CATKIN_DEPENDS message_runtime std_msgs rospy roscpp pluginlib
INCLUDE_DIRS include
LIBRARIES ZeroClassifier NearestNeighborClassifier SVMClassifier
)

add_definitions(${EIGEN_DEFINITIONS})
add_definitions(${EIGEN3_DEFINITIONS})

include_directories(include ${EIGEN_INCLUDE_DIRS} ${catkin_INCLUDE_DIRS})
include_directories(include ${EIGEN3_INCLUDE_DIRS} ${catkin_INCLUDE_DIRS})

add_library(ZeroClassifier src/zero_classifier.cpp)
add_library(NearestNeighborClassifier src/nearest_neighbor_classifier.cpp)
Expand Down

0 comments on commit ef8fd55

Please sign in to comment.