cmake_minimum_required(VERSION 2.8.3)
project(laptop_battery_monitor)

find_package(catkin REQUIRED COMPONENTS diagnostic_msgs smart_battery_msgs)

catkin_package(CATKIN_DEPENDS smart_battery_msgs diagnostic_msgs)

install(
  PROGRAMS 
    scripts/laptop_battery.py
    DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

