summaryrefslogtreecommitdiffstats
path: root/modules/ktx/SCsub
blob: f4c394d7345e777c619d2c2aba61930306c14ca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
from misc.utility.scons_hints import *

Import("env")
Import("env_modules")

env_ktx = env_modules.Clone()

# libktx thirdparty source files

thirdparty_obj = []

thirdparty_dir = "#thirdparty/libktx/"
thirdparty_sources = [
    "lib/basis_transcode.cpp",
    "lib/checkheader.c",
    "lib/filestream.c",
    "lib/hashlist.c",
    "lib/memstream.c",
    "lib/miniz_wrapper.cpp",
    "lib/swap.c",
    "lib/texture.c",
    "lib/texture1.c",
    "lib/texture2.c",
    "lib/vkformat_check.c",
    "lib/vkformat_typesize.c",
    "lib/dfdutils/createdfd.c",
    "lib/dfdutils/colourspaces.c",
    "lib/dfdutils/interpretdfd.c",
    "lib/dfdutils/printdfd.c",
    "lib/dfdutils/queries.c",
    "lib/dfdutils/vk2dfd.c",
]
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]

env_ktx.Prepend(CPPPATH=[thirdparty_dir + "include"])
env_ktx.Prepend(CPPPATH=[thirdparty_dir + "utils"])
env_ktx.Prepend(CPPPATH=[thirdparty_dir + "lib"])
env_ktx.Prepend(CPPPATH=[thirdparty_dir + "other_include"])

env_ktx.Prepend(CPPPATH=["#thirdparty/basis_universal"])
if env.editor_build:
    # We already build miniz in the basis_universal module (editor only).
    env_ktx.Append(CPPDEFINES=["MINIZ_HEADER_FILE_ONLY"])

if env["vulkan"]:
    env_ktx.Prepend(CPPPATH=["#thirdparty/vulkan/include"])
else:
    # Falls back on bundled `vkformat_enum.h`.
    env_ktx.Append(CPPDEFINES=["LIBKTX"])

env_ktx.Append(CPPDEFINES=[("KHRONOS_STATIC", 1)])

env_thirdparty = env_ktx.Clone()
env_thirdparty.disable_warnings()
env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
env.modules_sources += thirdparty_obj

# Godot source files
module_obj = []

env_ktx.add_source_files(module_obj, "*.cpp")
env.modules_sources += module_obj

# Needed to force rebuilding the module files when the thirdparty library is updated.
env.Depends(module_obj, thirdparty_obj)