Version bump 0.2
authorKevron Rees <kevron_m_rees@linux.intel.com>
Mon, 9 Jul 2012 21:21:45 +0000 (14:21 -0700)
committerKevron Rees <kevron_m_rees@linux.intel.com>
Mon, 9 Jul 2012 23:48:18 +0000 (16:48 -0700)
CMakeLists.txt
lib/CMakeLists.txt
plugins/exampleplugin.cpp

index 93adbe5..710a97a 100644 (file)
@@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 2.8)
 include(FindPkgConfig)
 
 set(PROJECT_NAME "automotive-message-broker")
-set(PROJECT_VERSION "0.0.1")
+set(PROJECT_VERSION "0.2.0")
 
 add_definitions(-DPROJECT_VERSION="${PROJECT_VERSION}")
 add_definitions(-DPROJECT_NAME="${PROJECT_NAME}")
index f70c804..1c5fe11 100644 (file)
@@ -7,7 +7,7 @@ add_library(amb SHARED ${amb_sources})
 target_link_libraries(amb ${libtool_LIBRARY} ${glib_LIBRARIES} ${gio_LIBRARIES})
 
 configure_file (${CMAKE_CURRENT_SOURCE_DIR}/automotive-message-broker.pc.in ${CMAKE_CURRENT_BINARY_DIR}/automotive-message-broker.pc @ONLY)
-install (FILES ${CMAKE_CURRENT_BINARY_DIR}/automotive-message-broker.pc DESTINATION ${LIB_INSTALL_DIR}/${LIB_SUFFIX}/${CMAKE_LIBRARY_ARCHITECTURE}/pkgconfig)
+install (FILES ${CMAKE_CURRENT_BINARY_DIR}/automotive-message-broker.pc DESTINATION ${LIB_INSTALL_DIR}/${LIB_SUFFIX}/pkgconfig)
 install (FILES ${amb_headers_install} DESTINATION ${INCLUDE_INSTALL_DIR}/amb COMPONENT Devel)
 install (TARGETS amb LIBRARY DESTINATION ${LIB_INSTALL_DIR} RUNTIME DESTINATION bin ARCHIVE DESTINATION ${LIB_INSTALL_DIR})
 
index 50e55a5..d37a4f8 100644 (file)
@@ -40,8 +40,6 @@ using namespace std;
 #include "enginecoolantproperty.h"
 #include "accelerationproperty.h"
 #include "steeringwheelangleproperty.h"
-#include "wheelticksensorproperty.h"
-
 
 #include "debugout.h"
 
@@ -160,10 +158,6 @@ ExamplePlugin::ExamplePlugin()
        SteeringWheelAngleProperty * steeringWheelAngle = new SteeringWheelAngleProperty();
 
        *steeringWheelAngle = 100;
-       
-       WheelTickSensor wheelTicks;
-       wheelTicks.right = 1000;
-       wheelTicks.left = 1300;
 }
 
 extern "C" void create()