From f2bd01a21da96a97bbef19026f55fe74d14fedb1 Mon Sep 17 00:00:00 2001 From: Jooseok Park Date: Mon, 16 Jan 2017 16:53:23 +0900 Subject: [PATCH] Fix the notification service SConscript - when application use the notification service, build error occurs. - i.e) /usr/include/service/notification/NSConsumerInterface.h:35:22: fatal error: NSCommon.h: No such file or directory - Although NSConsumerInterface.h includes NSCommon.h, NSCommon.h file is not installed in SConscript. - So, need to add NSCommon.h in installed header Change-Id: I2f28f84504d68c5506c89513d74adcdf32d2bbfc Signed-off-by: JooseokPark Reviewed-on: https://gerrit.iotivity.org/gerrit/16427 Reviewed-by: Phil Coval Tested-by: jenkins-iotivity Reviewed-by: Uze Choi (cherry picked from commit e4eca38246a40013530b7df74c1b369960c88897) Reviewed-on: https://gerrit.iotivity.org/gerrit/16459 Tested-by: Uze Choi --- service/notification/SConscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/service/notification/SConscript b/service/notification/SConscript index 2b4df41..745f801 100755 --- a/service/notification/SConscript +++ b/service/notification/SConscript @@ -123,6 +123,9 @@ notification_provider_env.UserInstallTargetHeader('include/NSProviderInterface.h 'service/notification', 'NSProviderInterface.h') notification_consumer_env.UserInstallTargetHeader('include/NSConsumerInterface.h',\ 'service/notification', 'NSConsumerInterface.h') +notification_consumer_env.UserInstallTargetHeader('include/NSCommon.h',\ + 'service/notification', 'NSCommon.h') + # Go to build Unit test if target_os == 'linux': -- 2.7.4