X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=resource%2Fexamples%2FSConscript;h=4896179b7f8475f74c26b7b30cc586387c07a6d6;hb=7f00f942c39b7bc27c7eeecf213a239c3fe4173c;hp=afb0eb2185b360d961ab337dae7b8f4f8221de1f;hpb=edcfc3d2329da7b914771c0dcff5f42c9b74fd93;p=platform%2Fupstream%2Fiotivity.git diff --git a/resource/examples/SConscript b/resource/examples/SConscript index afb0eb2..4896179 100644 --- a/resource/examples/SConscript +++ b/resource/examples/SConscript @@ -29,6 +29,7 @@ SConscript('#resource/third_party_libs.scons', 'lib_env') examples_env = lib_env.Clone() target_os = examples_env.get('TARGET_OS') rd_mode = examples_env.get('RD_MODE') +ble_custom_adv = examples_env.get('BLE_CUSTOM_ADV') ###################################################################### # Build flags @@ -75,6 +76,9 @@ if target_os in ['darwin', 'ios']: if examples_env.get('WITH_CLOUD'): examples_env.AppendUnique(CPPDEFINES = ['WITH_CLOUD']) +if ble_custom_adv == True: + env.AppendUnique(CPPDEFINES = ['BLE_CUSTOM_ADVERTISE']) + if target_os in ['msys_nt', 'windows']: examples_env.AppendUnique(LIBS = ['Comctl32', 'Gdi32', 'User32'])