Home | History | Annotate | Download | only in extractkeys
      1 ############################################################################
      2 # Copyright 2016-2017 Intel Corporation
      3 #
      4 # Licensed under the Apache License, Version 2.0 (the "License");
      5 # you may not use this file except in compliance with the License.
      6 # You may obtain a copy of the License at
      7 #
      8 #     http://www.apache.org/licenses/LICENSE-2.0
      9 #
     10 # Unless required by applicable law or agreed to in writing, software
     11 # distributed under the License is distributed on an "AS IS" BASIS,
     12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 # See the License for the specific language governing permissions and
     14 # limitations under the License.
     15 ############################################################################
     16 
     17 Import('*')
     18 
     19 env.PartName("extractkeys")
     20 
     21 src_files = Pattern(src_dir='src/',
     22                     includes=['*.c'],
     23                     recursive=True).files()
     24 
     25 parts_file = ['extractkeys.parts']
     26 
     27 if 'install_package' in env['MODE']:
     28     env.InstallTopLevel(src_files, sub_dir='tools/${PART_SHORT_NAME}/src')
     29     env.InstallTopLevel(parts_file, sub_dir='tools/${PART_SHORT_NAME}')
     30 else:
     31     env.DependsOn([
     32         Component('common'),
     33         Component('util'),
     34         Component('argtable3')
     35     ])
     36 
     37     if env['TARGET_PLATFORM']['OS'] == 'win32':
     38         env.Append(CPPDEFINES='_CRT_SECURE_NO_WARNINGS')
     39         if env.isConfigBasedOn('debug'):
     40             env['PDB'] = '${PART_NAME}.pdb'
     41 
     42     outputs = env.Program('${PART_NAME}', src_files,
     43                           no_import_lib=True)
     44 
     45     env.InstallBin(outputs,
     46                    no_pkg=False,
     47                    INSTALL_BIN='${INSTALL_TOOLS_BIN}')
     48