Sha256: 4e92b37cfe7f3c5df94620df987d9e567489ff1604362a14e1bd034676599ca0

Contents?: true

Size: 1.42 KB

Versions: 10

Compression:

Stored size: 1.42 KB

Contents

require 'ceedling/constants'
require 'ceedling/file_path_utils'

# create file dependencies to ensure C-based components of vendor tools are recompiled when they are updated with new versions
# forming these explicitly rather than depend on auxiliary dependencies so all scenarios are explicitly covered

file( @ceedling[:file_path_utils].form_test_build_object_filepath( UNITY_C_FILE ) => [
  File.join( UNITY_VENDOR_PATH, UNITY_LIB_PATH, UNITY_C_FILE ),
  File.join( UNITY_VENDOR_PATH, UNITY_LIB_PATH, UNITY_H_FILE ),
  File.join( UNITY_VENDOR_PATH, UNITY_LIB_PATH, UNITY_INTERNALS_H_FILE ) ]
  )


if (PROJECT_USE_MOCKS)
file( @ceedling[:file_path_utils].form_test_build_object_filepath( CMOCK_C_FILE ) => [
  File.join( CMOCK_VENDOR_PATH, CMOCK_LIB_PATH, CMOCK_C_FILE ),
  File.join( CMOCK_VENDOR_PATH, CMOCK_LIB_PATH, CMOCK_H_FILE ) ]
  )
end


if (PROJECT_USE_EXCEPTIONS)
file( @ceedling[:file_path_utils].form_test_build_object_filepath( CEXCEPTION_C_FILE ) => [
  File.join( CEXCEPTION_VENDOR_PATH, CEXCEPTION_LIB_PATH, CEXCEPTION_C_FILE ),
  File.join( CEXCEPTION_VENDOR_PATH, CEXCEPTION_LIB_PATH, CEXCEPTION_H_FILE ) ]
  )
end


if (PROJECT_USE_EXCEPTIONS and PROJECT_RELEASE_BUILD)
file( @ceedling[:file_path_utils].form_release_build_c_object_filepath( CEXCEPTION_C_FILE ) => [
  File.join( CEXCEPTION_VENDOR_PATH, CEXCEPTION_LIB_PATH, CEXCEPTION_C_FILE ),
  File.join( CEXCEPTION_VENDOR_PATH, CEXCEPTION_LIB_PATH, CEXCEPTION_H_FILE ) ]
  )
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ceedling-0.28.2 lib/ceedling/tasks_vendor.rake
ceedling-0.28.1 lib/ceedling/tasks_vendor.rake
ceedling-0.27.0 lib/ceedling/tasks_vendor.rake
ceedling-0.25.0 lib/ceedling/tasks_vendor.rake
ceedling-0.24.0 lib/ceedling/tasks_vendor.rake
ceedling-0.22.0 lib/ceedling/tasks_vendor.rake
ceedling-0.21.0 lib/ceedling/tasks_vendor.rake
ceedling-0.20.3 lib/ceedling/tasks_vendor.rake
ceedling-0.20.2 lib/ceedling/tasks_vendor.rake
ceedling-0.19.0 lib/ceedling/tasks_vendor.rake