mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-02-01 09:58:42 -05:00
18 lines
566 B
Ruby
18 lines
566 B
Ruby
# =========================================================================
|
|
# CMock - Automatic Mock Generation for C
|
|
# ThrowTheSwitch.org
|
|
# Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
# SPDX-License-Identifier: MIT
|
|
# =========================================================================
|
|
|
|
# Setup our load path:
|
|
[
|
|
'./lib',
|
|
'./vendor/behaviors/lib',
|
|
'./vendor/hardmock/lib',
|
|
'./vendor/unity/auto/',
|
|
'./test/system/'
|
|
].each do |dir|
|
|
$:.unshift(File.join(File.expand_path("#{File.dirname(__FILE__)}//..//"), dir))
|
|
end
|