summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Dickow <jjdickow@gmail.com>2015-04-29 16:17:50 -0400
committerJustin Dickow <jjdickow@gmail.com>2015-04-29 16:17:50 -0400
commitd8d4fa41466380773a4ff443077550b562879201 (patch)
tree6fc0a53e9e3b96da3e647231962223d6158d20c1
parentcee75d3523d13d1785ef4d3f53341edcb9c491b8 (diff)
downloadsmartdevicelink-d8d4fa41466380773a4ff443077550b562879201.tar.gz
Included source for hmi commands in cmake
Signed-off-by: Justin Dickow <jjdickow@gmail.com>
-rw-r--r--src/components/application_manager/CMakeLists.txt2
-rw-r--r--src/components/application_manager/src/hmi_command_factory.cc6
2 files changed, 5 insertions, 3 deletions
diff --git a/src/components/application_manager/CMakeLists.txt b/src/components/application_manager/CMakeLists.txt
index a0bfe6ffa..e51a9d995 100644
--- a/src/components/application_manager/CMakeLists.txt
+++ b/src/components/application_manager/CMakeLists.txt
@@ -125,6 +125,8 @@ file (GLOB MOBILE_COMMANDS_SOURCES
${AM_SOURCE_DIR}/src/commands/hmi/on_app_activated_notification.cc
${AM_SOURCE_DIR}/src/commands/hmi/button_get_capabilities_request.cc
${AM_SOURCE_DIR}/src/commands/hmi/button_get_capabilities_response.cc
+ ${AM_SOURCE_DIR}/src/commands/hmi/button_press_request.cc
+ ${AM_SOURCE_DIR}/src/commands/hmi/button_press_response.cc
${AM_SOURCE_DIR}/src/commands/hmi/vr_is_ready_request.cc
${AM_SOURCE_DIR}/src/commands/hmi/vr_is_ready_response.cc
${AM_SOURCE_DIR}/src/commands/hmi/vr_add_command_request.cc
diff --git a/src/components/application_manager/src/hmi_command_factory.cc b/src/components/application_manager/src/hmi_command_factory.cc
index 87f570279..1c826f56b 100644
--- a/src/components/application_manager/src/hmi_command_factory.cc
+++ b/src/components/application_manager/src/hmi_command_factory.cc
@@ -76,8 +76,10 @@
#include "application_manager/commands/hmi/close_popup_response.h"
#include "application_manager/commands/hmi/button_get_capabilities_request.h"
#include "application_manager/commands/hmi/button_get_capabilities_response.h"
-#include "application_manager/commands/hmi/ui_add_command_request.h"
+#include "application_manager/commands/hmi/button_press_response.h"
+#include "application_manager/commands/hmi/button_press_request.h"
#include "application_manager/commands/hmi/ui_add_command_response.h"
+#include "application_manager/commands/hmi/ui_add_command_request.h"
#include "application_manager/commands/hmi/ui_delete_command_request.h"
#include "application_manager/commands/hmi/ui_delete_command_response.h"
#include "application_manager/commands/hmi/ui_add_submenu_request.h"
@@ -262,8 +264,6 @@
#include "application_manager/commands/hmi/on_phone_call_notification.h"
#include "application_manager/commands/hmi/dial_number_request.h"
#include "application_manager/commands/hmi/dial_number_response.h"
-#include "application_manager/commands/hmi/button_press_response.h"
-#include "application_manager/commands/hmi/button_press_request.h"
namespace application_manager {