verifysig.parts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ############################################################################
  2. # Copyright 2016 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. Import('*')
  17. env.PartName("verifysig")
  18. src_files = Pattern(src_dir='src/',
  19. includes=['*.c'],
  20. recursive=True).files()
  21. inc_files = Pattern(src_dir='src/',
  22. includes=['*.h'],
  23. recursive=True).files()
  24. parts_file = ['verifysig.parts']
  25. if 'install_package' in env['MODE']:
  26. env.InstallTopLevel(src_files + inc_files, sub_dir='example/${PART_SHORT_NAME}/src')
  27. env.InstallTopLevel(parts_file, sub_dir='example/${PART_SHORT_NAME}')
  28. else:
  29. env.DependsOn([
  30. Component('verifier'),
  31. Component('util'),
  32. Component('dropt')
  33. ])
  34. env.Append(CPPPATH='#/example/verifysig')
  35. if env['TARGET_PLATFORM']['OS'] == 'win32':
  36. if env.isConfigBasedOn('debug'):
  37. env['PDB'] = '${PART_NAME}.pdb'
  38. outputs = env.Program('${PART_NAME}', src_files,
  39. no_import_lib=True)
  40. env.InstallBin(outputs,
  41. no_pkg=False,
  42. INSTALL_BIN='${INSTALL_SAMPLE_BIN}')