X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=SConstruct;h=3a69fe51a96ec52722162671c4e20181740df470;hb=271cb0c5e9535138e31ab3326632d888d300a0c1;hp=0ebc436441dffdff7a0837c4dc1b7aa2c6c016c9;hpb=7033427e9b2787649d5b3a7769a32520e19b47d2;p=platform%2Fupstream%2Fiotivity.git diff --git a/SConstruct b/SConstruct index 0ebc436..3a69fe5 100644 --- a/SConstruct +++ b/SConstruct @@ -56,14 +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 -SConscript(build_dir + 'plugins/SConscript') +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 @@ -73,6 +81,6 @@ env.PrintTargets() if target_os == 'arduino': env.UploadHelp() -# to install the generated pc file into custome prefix location +# to install the generated pc file into custom prefix location env.UserInstallTargetPCFile('iotivity.pc', 'iotivity.pc')