summaryrefslogtreecommitdiffstats
path: root/modules/jsonrpc/SCsub
blob: 8ee4f8bfea9df9b8dadd5f002b7bcdcb86bdcc26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

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

env_jsonrpc = env_modules.Clone()
env_jsonrpc.add_source_files(env.modules_sources, "*.cpp")

if env["tests"]:
    env_jsonrpc.Append(CPPDEFINES=["TESTS_ENABLED"])
    env_jsonrpc.add_source_files(env.modules_sources, "./tests/*.cpp")

    if env["disable_exceptions"]:
        env_jsonrpc.Append(CPPDEFINES=["DOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS"])