SConscript (10915:71ace17ccb3d) SConscript (11294:a368064a2ab5)
1# -*- mode:python -*-
2
3# Copyright (c) 2015 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 28 unchanged lines hidden (view full) ---

37#
38# Authors: Andreas Sandberg
39
40Import('main')
41
42main.Prepend(CPPPATH=Dir('./include'))
43
44nomali = main.Clone()
1# -*- mode:python -*-
2
3# Copyright (c) 2015 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 28 unchanged lines hidden (view full) ---

37#
38# Authors: Andreas Sandberg
39
40Import('main')
41
42main.Prepend(CPPPATH=Dir('./include'))
43
44nomali = main.Clone()
45nomali.Append(CCFLAGS=['-Wno-ignored-qualifiers'])
45
46nomali_sources = [
47 "lib/gpu.cc",
48 "lib/gpublock.cc",
49 "lib/gpucontrol.cc",
50 "lib/jobcontrol.cc",
51 "lib/jobslot.cc",
52 "lib/mali_midgard.cc",
53 "lib/mali_t6xx.cc",
54 "lib/mali_t7xx.cc",
55 "lib/mmu.cc",
56 "lib/nomali_api.cc",
57]
58
59nomali.Library('nomali', [ nomali.SharedObject(f) for f in nomali_sources ])
60
61main.Append(LIBS=['nomali'])
62main.Prepend(LIBPATH=[Dir('.')])
63
46
47nomali_sources = [
48 "lib/gpu.cc",
49 "lib/gpublock.cc",
50 "lib/gpucontrol.cc",
51 "lib/jobcontrol.cc",
52 "lib/jobslot.cc",
53 "lib/mali_midgard.cc",
54 "lib/mali_t6xx.cc",
55 "lib/mali_t7xx.cc",
56 "lib/mmu.cc",
57 "lib/nomali_api.cc",
58]
59
60nomali.Library('nomali', [ nomali.SharedObject(f) for f in nomali_sources ])
61
62main.Append(LIBS=['nomali'])
63main.Prepend(LIBPATH=[Dir('.')])
64