SConscript revision 13722:4f0de9b591df
19888Sandreas@sandberg.pp.se# Copyright 2018 Google, Inc.
29888Sandreas@sandberg.pp.se#
39888Sandreas@sandberg.pp.se# Redistribution and use in source and binary forms, with or without
49888Sandreas@sandberg.pp.se# modification, are permitted provided that the following conditions are
59888Sandreas@sandberg.pp.se# met: redistributions of source code must retain the above copyright
69888Sandreas@sandberg.pp.se# notice, this list of conditions and the following disclaimer;
79888Sandreas@sandberg.pp.se# redistributions in binary form must reproduce the above copyright
89888Sandreas@sandberg.pp.se# notice, this list of conditions and the following disclaimer in the
99888Sandreas@sandberg.pp.se# documentation and/or other materials provided with the distribution;
109888Sandreas@sandberg.pp.se# neither the name of the copyright holders nor the names of its
119888Sandreas@sandberg.pp.se# contributors may be used to endorse or promote products derived from
129888Sandreas@sandberg.pp.se# this software without specific prior written permission.
139888Sandreas@sandberg.pp.se#
149888Sandreas@sandberg.pp.se# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
159888Sandreas@sandberg.pp.se# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
169888Sandreas@sandberg.pp.se# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
179888Sandreas@sandberg.pp.se# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
189888Sandreas@sandberg.pp.se# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
199888Sandreas@sandberg.pp.se# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
209888Sandreas@sandberg.pp.se# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
219888Sandreas@sandberg.pp.se# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
229888Sandreas@sandberg.pp.se# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
239888Sandreas@sandberg.pp.se# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
249888Sandreas@sandberg.pp.se# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
259888Sandreas@sandberg.pp.se#
269888Sandreas@sandberg.pp.se# Authors: Gabe Black
279888Sandreas@sandberg.pp.se
289888Sandreas@sandberg.pp.seImport('*')
299888Sandreas@sandberg.pp.se
309888Sandreas@sandberg.pp.seif env['USE_SYSTEMC']:
319888Sandreas@sandberg.pp.se    SimObject('SystemC.py')
329888Sandreas@sandberg.pp.se
339888Sandreas@sandberg.pp.se    Source('channel.cc')
349888Sandreas@sandberg.pp.se    Source('event.cc')
359888Sandreas@sandberg.pp.se    Source('kernel.cc')
369888Sandreas@sandberg.pp.se    Source('messages.cc')
379888Sandreas@sandberg.pp.se    Source('module.cc')
389888Sandreas@sandberg.pp.se    Source('object.cc')
399888Sandreas@sandberg.pp.se    Source('port.cc')
409888Sandreas@sandberg.pp.se    Source('process.cc')
419888Sandreas@sandberg.pp.se    Source('scheduler.cc')
429888Sandreas@sandberg.pp.se    Source('sched_event.cc')
439888Sandreas@sandberg.pp.se    Source('sensitivity.cc')
449888Sandreas@sandberg.pp.se    Source('time.cc')
459888Sandreas@sandberg.pp.se
469888Sandreas@sandberg.pp.se    Source('sc_attr.cc')
479888Sandreas@sandberg.pp.se    Source('sc_event.cc')
489888Sandreas@sandberg.pp.se    Source('sc_export.cc')
499888Sandreas@sandberg.pp.se    Source('sc_interface.cc')
509888Sandreas@sandberg.pp.se    Source('sc_join.cc')
519888Sandreas@sandberg.pp.se    Source('sc_main.cc')
529888Sandreas@sandberg.pp.se    Source('sc_main_fiber.cc')
539888Sandreas@sandberg.pp.se    Source('sc_module.cc')
549888Sandreas@sandberg.pp.se    Source('sc_module_name.cc')
559888Sandreas@sandberg.pp.se    Source('sc_object.cc')
569888Sandreas@sandberg.pp.se    Source('sc_port.cc')
579888Sandreas@sandberg.pp.se    Source('sc_process_handle.cc')
589888Sandreas@sandberg.pp.se    Source('sc_prim.cc')
599888Sandreas@sandberg.pp.se    Source('sc_sensitive.cc')
609888Sandreas@sandberg.pp.se    Source('sc_simcontext.cc')
619888Sandreas@sandberg.pp.se    Source('sc_spawn.cc')
629888Sandreas@sandberg.pp.se    Source('sc_time.cc')
639888Sandreas@sandberg.pp.se
649888Sandreas@sandberg.pp.se    if env['USE_PYTHON']:
659888Sandreas@sandberg.pp.se        Source('python.cc')
669888Sandreas@sandberg.pp.se        Source('sc_main_python.cc')
679888Sandreas@sandberg.pp.se        Source('sc_time_python.cc')
689888Sandreas@sandberg.pp.se