X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=SConstruct;h=3a69fe51a96ec52722162671c4e20181740df470;hb=271cb0c5e9535138e31ab3326632d888d300a0c1;hp=8db1ee4e69b645f929022824886adc1b867fb892;hpb=762e0f294caf0accf0f7200107f4ed7ceaf676a9;p=platform%2Fupstream%2Fiotivity.git diff --git a/SConstruct b/SConstruct index 8db1ee4..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,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')