X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=SConstruct;h=3a69fe51a96ec52722162671c4e20181740df470;hb=1d58f8510f39102a12461437915640cec1dbcf4b;hp=bbe03d11d2906971c7ec21d60cd399caa417756b;hpb=14986aadd87ae82372f531e9049a87a408642e2c;p=platform%2Fupstream%2Fiotivity.git diff --git a/SConstruct b/SConstruct index bbe03d1..3a69fe5 100644 --- a/SConstruct +++ b/SConstruct @@ -56,11 +56,22 @@ build_dir = env.get('BUILD_DIR') # Build 'resource' sub-project SConscript(build_dir + 'resource/SConscript') -if target_os not in ['arduino','darwin','ios', 'android']: +if target_os not in ['arduino','darwin','ios', 'android', 'msys_nt', 'windows', 'tizenrt']: SConscript(build_dir + 'examples/OICMiddle/SConscript') # Build 'service' sub-project -SConscript(build_dir + 'service/SConscript') +if target_os not in ['tizenrt']: + SConscript(build_dir + 'service/SConscript') + +# Build "cloud" sub-project +SConscript(build_dir + 'cloud/SConscript') + +# Build "plugin interface" sub-project +if target_os not in ['tizenrt']: + SConscript(build_dir + 'plugins/SConscript') + +if target_os == 'tizenrt': + SConscript('../apps' + '/SConscript') # Append targets information to the help information, to see help info, execute command line: # $ scon [options] -h @@ -70,3 +81,6 @@ env.PrintTargets() if target_os == 'arduino': env.UploadHelp() +# to install the generated pc file into custom prefix location +env.UserInstallTargetPCFile('iotivity.pc', 'iotivity.pc') +